~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/ARM/sbfx.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=arm -mattr=+v6t2 | FileCheck %s
 
2
 
 
3
define i32 @f1(i32 %a) {
 
4
entry:
 
5
; CHECK: f1:
 
6
; CHECK: sbfx r0, r0, #0, #20
 
7
    %tmp = shl i32 %a, 12
 
8
    %tmp2 = ashr i32 %tmp, 12
 
9
    ret i32 %tmp2
 
10
}
 
11
 
 
12
define i32 @f2(i32 %a) {
 
13
entry:
 
14
; CHECK: f2:
 
15
; CHECK: ubfx r0, r0, #0, #20
 
16
    %tmp = shl i32 %a, 12
 
17
    %tmp2 = lshr i32 %tmp, 12
 
18
    ret i32 %tmp2
 
19
}
 
20
 
 
21
define i32 @f3(i32 %a) {
 
22
entry:
 
23
; CHECK: f3:
 
24
; CHECK: sbfx r0, r0, #5, #3
 
25
    %tmp = shl i32 %a, 24
 
26
    %tmp2 = ashr i32 %tmp, 29
 
27
    ret i32 %tmp2
 
28
}
 
29
 
 
30
define i32 @f4(i32 %a) {
 
31
entry:
 
32
; CHECK: f4:
 
33
; CHECK: ubfx r0, r0, #5, #3
 
34
    %tmp = shl i32 %a, 24
 
35
    %tmp2 = lshr i32 %tmp, 29
 
36
    ret i32 %tmp2
 
37
}
 
38
 
 
39
define i32 @f5(i32 %a) {
 
40
entry:
 
41
; CHECK: f5:
 
42
; CHECK-NOT: sbfx
 
43
; CHECK: bx
 
44
    %tmp = shl i32 %a, 3
 
45
    %tmp2 = ashr i32 %tmp, 1
 
46
    ret i32 %tmp2
 
47
}