mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-11 13:46:13 +00:00
FileCheck-ize another codegen test, tightening it up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134331 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4d28d7365a
commit
8f786a5834
@ -1,4 +1,4 @@
|
|||||||
; RUN: llc < %s | grep {addl \$3, (%eax)} | count 4
|
; RUN: llc < %s | FileCheck %s
|
||||||
; PR2182
|
; PR2182
|
||||||
|
|
||||||
target datalayout =
|
target datalayout =
|
||||||
@ -7,18 +7,25 @@ target triple = "i386-apple-darwin8"
|
|||||||
@x = weak global i32 0 ; <i32*> [#uses=8]
|
@x = weak global i32 0 ; <i32*> [#uses=8]
|
||||||
|
|
||||||
define void @loop_2() nounwind {
|
define void @loop_2() nounwind {
|
||||||
entry:
|
; CHECK: loop_2:
|
||||||
%tmp = volatile load i32* @x, align 4 ; <i32> [#uses=1]
|
; CHECK-NOT: ret
|
||||||
%tmp1 = add i32 %tmp, 3 ; <i32> [#uses=1]
|
; CHECK: addl $3, (%{{.*}})
|
||||||
volatile store i32 %tmp1, i32* @x, align 4
|
; CHECK-NEXT: addl $3, (%{{.*}})
|
||||||
%tmp.1 = volatile load i32* @x, align 4 ; <i32> [#uses=1]
|
; CHECK-NEXT: addl $3, (%{{.*}})
|
||||||
%tmp1.1 = add i32 %tmp.1, 3 ; <i32> [#uses=1]
|
; CHECK-NEXT: addl $3, (%{{.*}})
|
||||||
volatile store i32 %tmp1.1, i32* @x, align 4
|
; CHECK-NEXT: ret
|
||||||
%tmp.2 = volatile load i32* @x, align 4 ; <i32> [#uses=1]
|
|
||||||
%tmp1.2 = add i32 %tmp.2, 3 ; <i32> [#uses=1]
|
%tmp = volatile load i32* @x, align 4 ; <i32> [#uses=1]
|
||||||
volatile store i32 %tmp1.2, i32* @x, align 4
|
%tmp1 = add i32 %tmp, 3 ; <i32> [#uses=1]
|
||||||
%tmp.3 = volatile load i32* @x, align 4 ; <i32> [#uses=1]
|
volatile store i32 %tmp1, i32* @x, align 4
|
||||||
%tmp1.3 = add i32 %tmp.3, 3 ; <i32> [#uses=1]
|
%tmp.1 = volatile load i32* @x, align 4 ; <i32> [#uses=1]
|
||||||
volatile store i32 %tmp1.3, i32* @x, align 4
|
%tmp1.1 = add i32 %tmp.1, 3 ; <i32> [#uses=1]
|
||||||
ret void
|
volatile store i32 %tmp1.1, i32* @x, align 4
|
||||||
|
%tmp.2 = volatile load i32* @x, align 4 ; <i32> [#uses=1]
|
||||||
|
%tmp1.2 = add i32 %tmp.2, 3 ; <i32> [#uses=1]
|
||||||
|
volatile store i32 %tmp1.2, i32* @x, align 4
|
||||||
|
%tmp.3 = volatile load i32* @x, align 4 ; <i32> [#uses=1]
|
||||||
|
%tmp1.3 = add i32 %tmp.3, 3 ; <i32> [#uses=1]
|
||||||
|
volatile store i32 %tmp1.3, i32* @x, align 4
|
||||||
|
ret void
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user