Add PR number to test.
[oota-llvm.git] / test / Transforms / ADCE / 2002-07-17-AssertionFailure.ll
index edc658e8eebf0ecd1988fa4724e50b132a85b57a..8f8dadf7332fa455511aaa33c292cd3a0af1550c 100644 (file)
@@ -3,11 +3,11 @@
 ; block in this function, it would work fine, but that would be the part we 
 ; have to fix now, wouldn't it....
 ;
-; RUN: as < %s | opt -adce
+; RUN: opt < %s -adce
 
-void %foo(sbyte* %reg5481) {
-        %cast611 = cast sbyte* %reg5481 to sbyte**              ; <sbyte**> [#uses=1]
-        %reg162 = load sbyte** %cast611         ; <sbyte*> [#uses=0]
-       cast sbyte*%reg162 to int
-       ret void
+define void @foo(i8* %reg5481) {
+        %cast611 = bitcast i8* %reg5481 to i8**         ; <i8**> [#uses=1]
+        %reg162 = load i8** %cast611            ; <i8*> [#uses=1]
+        ptrtoint i8* %reg162 to i32             ; <i32>:1 [#uses=0]
+        ret void
 }