Add encoding for VSTR.
[oota-llvm.git] / test / Transforms / ConstProp / float-to-ptr-cast.ll
index f65d51e41b76fa34f3cdf381f65584759132567e..937f606bf1366870a4beecedef63cae9c677e9dc 100644 (file)
@@ -1,12 +1,15 @@
-; RUN: opt %s -constprop | llvm-dis | \
-; 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
+