~ubuntu-branches/ubuntu/maverick/clamav/maverick-backports

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/test/CodeGen/ARM/str_post.ll

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Gran, Stephen Gran, Michael Tautschnig
  • Date: 2010-04-26 21:41:18 UTC
  • mfrom: (2.1.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100426214118-i6lo606wnh7ywfj6
Tags: 0.96+dfsg-4
[ Stephen Gran ]
* Fixed typo in clamav-milter's postinst

[ Michael Tautschnig ]
* Fixed typo in clamav-freshclam's postinst (closes: #579271)
* Debconf translation updates
  - Portuguese (closes: #579068)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
; RUN: llc < %s -march=arm | FileCheck %s
 
2
 
 
3
define i16 @test1(i32* %X, i16* %A) {
 
4
; CHECK: test1:
 
5
; CHECK: strh {{.*}}[{{.*}}], #-4
 
6
        %Y = load i32* %X               ; <i32> [#uses=1]
 
7
        %tmp1 = trunc i32 %Y to i16             ; <i16> [#uses=1]
 
8
        store i16 %tmp1, i16* %A
 
9
        %tmp2 = ptrtoint i16* %A to i16         ; <i16> [#uses=1]
 
10
        %tmp3 = sub i16 %tmp2, 4                ; <i16> [#uses=1]
 
11
        ret i16 %tmp3
 
12
}
 
13
 
 
14
define i32 @test2(i32* %X, i32* %A) {
 
15
; CHECK: test2:
 
16
; CHECK: str {{.*}}[{{.*}}],
 
17
        %Y = load i32* %X               ; <i32> [#uses=1]
 
18
        store i32 %Y, i32* %A
 
19
        %tmp1 = ptrtoint i32* %A to i32         ; <i32> [#uses=1]
 
20
        %tmp2 = sub i32 %tmp1, 4                ; <i32> [#uses=1]
 
21
        ret i32 %tmp2
 
22
}