Revert "Don't create unnecessary PHIs"
[oota-llvm.git] / test / Transforms / ConstProp / float-to-ptr-cast.ll
index d8eb3e8b652c89a272fceec8cf7d7751627f0f3e..937f606bf1366870a4beecedef63cae9c677e9dc 100644 (file)
@@ -1,12 +1,15 @@
-; RUN: opt < %s -constprop -S | \
-; RUN:    grep -F {ret i32* null} | count 2
+; RUN: opt < %s -constprop -S | FileCheck %s
 
 define i32* @test1() {
         %X = inttoptr i64 0 to i32*             ; <i32*> [#uses=1]
         ret i32* %X
 }
 
+; CHECK:  ret i32* null
+
 define i32* @test2() {
         ret i32* null
 }
 
+; CHECK:  ret i32* null
+