~ubuntu-branches/ubuntu/natty/clamav/natty-proposed

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/PowerPC/stubs.ll

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-02 21:04:10 UTC
  • mfrom: (0.35.17 sid)
  • Revision ID: james.westby@ubuntu.com-20101202210410-ppgyckmylngsfa8o
Tags: 0.96.5+dfsg-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Drop initial signature definitions from clamav-base
  - Drop build-dep on electric-fence (in Universe)
  - Add apparmor profiles for clamd and freshclam along with maintainer
    script changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
; RUN: llc %s -o - -mtriple=powerpc-apple-darwin8 | FileCheck %s
2
 
define ppc_fp128 @test1(i64 %X) nounwind readnone {
3
 
entry:
4
 
  %0 = sitofp i64 %X to ppc_fp128
5
 
  ret ppc_fp128 %0
6
 
}
7
 
 
8
 
; CHECK: _test1:
9
 
; CHECK: bl ___floatditf$stub
10
 
; CHECK:        .section        __TEXT,__symbol_stub1,symbol_stubs,pure_instructions,16
11
 
; CHECK: ___floatditf$stub:
12
 
; CHECK:        .indirect_symbol ___floatditf
13
 
; CHECK:        lis r11,ha16(___floatditf$lazy_ptr)
14
 
; CHECK:        lwzu r12,lo16(___floatditf$lazy_ptr)(r11)
15
 
; CHECK:        mtctr r12
16
 
; CHECK:        bctr
17
 
; CHECK:        .section        __DATA,__la_symbol_ptr,lazy_symbol_pointers
18
 
; CHECK: ___floatditf$lazy_ptr:
19
 
; CHECK:        .indirect_symbol ___floatditf
20
 
; CHECK:        .long dyld_stub_binding_helper
21
 
 
22