llvm-ar: Clean up memory management with OwningPtr.
[oota-llvm.git] / test / Transforms / ConstProp / float-to-ptr-cast.ll
index 8ab76d997b1a80eebbb92bb1a58c6f40cd7d3cff..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
+