[InstCombine] use FileCheck for better checking
authorSanjay Patel <spatel@rotateright.com>
Fri, 25 Mar 2016 18:01:37 +0000 (18:01 +0000)
committerSanjay Patel <spatel@rotateright.com>
Fri, 25 Mar 2016 18:01:37 +0000 (18:01 +0000)
(testing script for autogeneration of check lines)

llvm-svn: 264432

llvm/test/Transforms/InstCombine/volatile_store.ll

index 7377b68..24a8136 100644 (file)
@@ -1,14 +1,21 @@
-; 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:         [[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]
+       %tmp = load volatile i32, i32* @x
        store volatile i32 %tmp, i32* @x
        br label %return
 
-return:                ; preds = %entry
+return:
        ret void
 }