FileCheck-ize tests.
[oota-llvm.git] / test / Analysis / GlobalsModRef / indirect-global.ll
index 826f55c8d1c476f23be3fa3ebb72d1de115809e0..48ac6dd1d1676fd050e237bc1c394d6e8704affc 100644 (file)
@@ -1,9 +1,7 @@
-; RUN: opt < %s -basicaa -globalsmodref-aa -gvn -instcombine -S | \
-; RUN:   grep {ret i32 0}
+; RUN: opt < %s -basicaa -globalsmodref-aa -gvn -instcombine -S | FileCheck %s
 
 @G = internal global i32* null         ; <i32**> [#uses=3]
 
-
 declare i8* @malloc(i32)
 define void @test() {
        %a = call i8* @malloc(i32 4)
@@ -13,6 +11,7 @@ define void @test() {
 }
 
 define i32 @test1(i32* %P) {
+; CHECK: ret i32 0
        %g1 = load i32** @G             ; <i32*> [#uses=2]
        %h1 = load i32* %g1             ; <i32> [#uses=1]
        store i32 123, i32* %P