~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/Assembler/unnamed.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: llvm-as < %s | llvm-dis
 
2
 
 
3
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
 
4
 
 
5
module asm "this is an inline asm block"
 
6
module asm "this is another inline asm block"
 
7
 
 
8
%0 = type { %1, %2 }
 
9
%1 = type { i32 }
 
10
%2 = type { float, double }
 
11
 
 
12
@0 = global i32 0
 
13
@1 = global float 3.0
 
14
@2 = global i8* null
 
15
@3 = global x86_fp80 0xK4001E000000000000000
 
16
 
 
17
define float @foo(%0* %p) nounwind {
 
18
  %t = load %0* %p                                ; <%0> [#uses=2]
 
19
  %s = extractvalue %0 %t, 1, 0                   ; <float> [#uses=1]
 
20
  %r = insertvalue %0 %t, double 2.000000e+00, 1, 1; <%0> [#uses=1]
 
21
  store %0 %r, %0* %p
 
22
  ret float %s
 
23
}
 
24
 
 
25
define float @bar(%0* %p) nounwind {
 
26
  store %0 { %1 { i32 4 }, %2 { float 4.000000e+00, double 2.000000e+01 } }, %0* %p
 
27
  ret float 7.000000e+00
 
28
}
 
29
 
 
30
define float @car(%0* %p) nounwind {
 
31
  store %0 { %1 undef, %2 { float undef, double 2.000000e+01 } }, %0* %p
 
32
  ret float undef
 
33
}
 
34
 
 
35
define float @dar(%0* %p) nounwind {
 
36
  store %0 { %1 zeroinitializer, %2 { float 0.000000e+00, double 2.000000e+01 } }, %0* %p
 
37
  ret float 0.000000e+00
 
38
}
 
39
 
 
40
define i32* @qqq() {
 
41
  ret i32* @0
 
42
}
 
43
define float* @rrr() {
 
44
  ret float* @1
 
45
}
 
46
define i8** @sss() {
 
47
  ret i8** @2
 
48
}
 
49
define x86_fp80* @nnn() {
 
50
  ret x86_fp80* @3
 
51
}