forked from OSchip/llvm-project
[NewGVN] Fix test so that it doesn't rely on InstCombine anymore.
llvm-svn: 294668
This commit is contained in:
parent
addcda483e
commit
fc0d442cf1
|
@ -1,4 +1,4 @@
|
|||
; RUN: opt < %s -basicaa -newgvn -instcombine -S | FileCheck %s
|
||||
; RUN: opt < %s -basicaa -newgvn -S | FileCheck %s
|
||||
; PR4189
|
||||
@G = external constant [4 x i32]
|
||||
|
||||
|
@ -12,8 +12,10 @@ entry:
|
|||
ret i32 %C
|
||||
}
|
||||
|
||||
; CHECK: define i32 @test(i8* %p, i32 %i) #0 {
|
||||
; CHECK-LABEL: define i32 @test
|
||||
; CHECK-NEXT: entry:
|
||||
; CHECK-NEXT: store i8 4, i8* %p, align 1
|
||||
; CHECK-NEXT: %P = getelementptr [4 x i32], [4 x i32]* @G, i32 0, i32 %i
|
||||
; CHECK-NEXT: %A = load i32, i32* %P
|
||||
; CHECK-NEXT: store i8 4, i8* %p
|
||||
; CHECK-NEXT: ret i32 0
|
||||
; CHECK-NEXT: }
|
||||
|
|
Loading…
Reference in New Issue