diff options
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/Transforms/NewGVN/load-constant-mem.ll | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/llvm/test/Transforms/NewGVN/load-constant-mem.ll b/llvm/test/Transforms/NewGVN/load-constant-mem.ll index 215258b934c..9bd79f7a142 100644 --- a/llvm/test/Transforms/NewGVN/load-constant-mem.ll +++ b/llvm/test/Transforms/NewGVN/load-constant-mem.ll @@ -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: } |

