~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/X86/2008-12-23-crazy-address.ll

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-03-12 11:30:04 UTC
  • mfrom: (0.41.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100312113004-b0fop4bkycszdd0z
Tags: 0.96~rc1+dfsg-0ubuntu1
* New upstream RC - FFE (LP: #537636):
  - Add OfficialDatabaseOnly option to clamav-base.postinst.in
  - Add LocalSocketGroup option to clamav-base.postinst.in
  - Add LocalSocketMode option to clamav-base.postinst.in
  - Add CrossFilesystems option to clamav-base.postinst.in
  - Add ClamukoScannerCount option to clamav-base.postinst.in
  - Add BytecodeSecurity opiton to clamav-base.postinst.in
  - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
  - Add Bytecode option to clamav-freshclam.postinst.in
  - Add MilterSocketGroup option to clamav-milter.postinst.in
  - Add MilterSocketMode option to clamav-milter.postinst.in
  - Add ReportHostname option to clamav-milter.postinst.in
  - Bump libclamav SO version to 6.1.0 in libclamav6.install
  - Drop clamdmon from clamav.examples (no longer shipped by upstream)
  - Drop libclamav.a from libclamav-dev.install (not built by upstream)
  - Update SO version for lintian override for libclamav6
  - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  - Add build-depends on python and python-setuptools for new test suite
  - Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: llc < %s -march=x86 -relocation-model=static | grep {lea.*X.*esp} | count 2
 
2
 
 
3
@X = external global [0 x i32]
 
4
 
 
5
define void @foo() nounwind {
 
6
entry:
 
7
        %Y = alloca i32
 
8
        call void @frob(i32* %Y) nounwind
 
9
        %Y3 = bitcast i32* %Y to i8*
 
10
        %ctg2 = getelementptr i8* %Y3, i32 ptrtoint ([0 x i32]* @X to i32)
 
11
        %0 = ptrtoint i8* %ctg2 to i32
 
12
        call void @borf(i32 %0) nounwind
 
13
        ret void
 
14
}
 
15
 
 
16
define void @bar(i32 %i) nounwind {
 
17
entry:
 
18
        %Y = alloca [10 x i32]
 
19
        %0 = getelementptr [10 x i32]* %Y, i32 0, i32 0
 
20
        call void @frob(i32* %0) nounwind
 
21
        %1 = getelementptr [0 x i32]* @X, i32 0, i32 %i
 
22
        %2 = getelementptr [10 x i32]* %Y, i32 0, i32 0
 
23
        %3 = ptrtoint i32* %2 to i32
 
24
        %4 = bitcast i32* %1 to i8*
 
25
        %ctg2 = getelementptr i8* %4, i32 %3
 
26
        %5 = ptrtoint i8* %ctg2 to i32
 
27
        call void @borf(i32 %5) nounwind
 
28
        ret void
 
29
}
 
30
 
 
31
declare void @frob(i32*)
 
32
 
 
33
declare void @borf(i32)