diff options
Diffstat (limited to 'test/Transforms/InstCombine/volatile_store.ll')
| -rw-r--r-- | test/Transforms/InstCombine/volatile_store.ll | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/test/Transforms/InstCombine/volatile_store.ll b/test/Transforms/InstCombine/volatile_store.ll index 7377b6815e290..c2f63d6659f07 100644 --- a/test/Transforms/InstCombine/volatile_store.ll +++ b/test/Transforms/InstCombine/volatile_store.ll @@ -1,14 +1,22 @@ -; RUN: opt < %s -instcombine -S | grep "store volatile" -; RUN: opt < %s -instcombine -S | grep "load volatile" +; NOTE: Assertions have been autogenerated by update_test_checks.py +; RUN: opt < %s -instcombine -S | FileCheck %s -@x = weak global i32 0 ; <i32*> [#uses=2] +@x = weak global i32 0 define void @self_assign_1() { +; CHECK-LABEL: @self_assign_1( +; CHECK-NEXT: entry: +; CHECK-NEXT: [[TMP:%.*]] = load volatile i32, i32* @x, align 4 +; CHECK-NEXT: store volatile i32 [[TMP]], i32* @x, align 4 +; CHECK-NEXT: br label %return +; CHECK: return: +; CHECK-NEXT: ret void +; entry: - %tmp = load volatile i32, i32* @x ; <i32> [#uses=1] - store volatile i32 %tmp, i32* @x - br label %return + %tmp = load volatile i32, i32* @x + store volatile i32 %tmp, i32* @x + br label %return -return: ; preds = %entry - ret void +return: + ret void } |
