Re-enable usage of the ARM base pointer. r113394 fixed the known failures.
[oota-llvm.git] / test / CodeGen / CBackend / 2003-10-23-UnusedType.ll
index bb9f4b7091be3e4bdd9d75c9555d3fd8509bb04e..9195634b0fc46c65ff809945ffe9bd742edb0137 100644 (file)
@@ -1,6 +1,8 @@
-; RUN: llvm-as < %s | llc -march=c
+; RUN: llc < %s -march=c
 
+%A = type { i32, i8*, { i32, i32, i32, i32, i32, i32, i32, i32 }*, i16 }
 
-%A = type { uint, sbyte*, { uint, uint, uint, uint, uint, uint, uint, uint }*, ushort }
+define void @test(%A*) {
+        ret void
+}
 
-void %test(%A *) { ret void }