[mips] Add an IR transformation pass that optimizes calls to sqrt.
[oota-llvm.git] / test / Assembler / 2002-08-15-CastAmbiguity.ll
index 40c7b1e4591ffd5910526e65693d7bde34d30d34..c71652446d6f08fe56754afc854d963ec9fa7509 100644 (file)
@@ -1,8 +1,6 @@
+; RUN: llvm-as %s -o /dev/null
 
-
-
-void %test(int %X) {
-       call void (int)* cast (void(int) * %test to void(int) *) (int 6)
-       ret void
-
+define void @test(i32 %X) {
+        call void @test( i32 6 )
+        ret void
 }