diff options
Diffstat (limited to 'test/Transforms/SCCP/atomic-load-store.ll')
-rw-r--r-- | test/Transforms/SCCP/atomic-load-store.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/SCCP/atomic-load-store.ll b/test/Transforms/SCCP/atomic-load-store.ll index 53e4c10..45b5d7c 100644 --- a/test/Transforms/SCCP/atomic-load-store.ll +++ b/test/Transforms/SCCP/atomic-load-store.ll @@ -6,7 +6,7 @@ @C = internal constant i32 222 define i32 @test1() { - %V = load atomic i32* @G seq_cst, align 4 + %V = load atomic i32, i32* @G seq_cst, align 4 %C = icmp eq i32 %V, 17 br i1 %C, label %T, label %F T: @@ -21,7 +21,7 @@ F: ; CHECK: ret i32 17 define i32 @test2() { - %V = load atomic i32* @C seq_cst, align 4 + %V = load atomic i32, i32* @C seq_cst, align 4 ret i32 %V } |