Split big test into multiple directories to cater to
[oota-llvm.git] / test / CodeGen / Alpha / 2006-11-01-vastart.ll
index 3a87a00000c070044a42f5b33dcce9ef9f20ea4e..14e0bccc8482c0d16b1c62eaeceb550e2024f480 100644 (file)
@@ -1,18 +1,15 @@
-; RUN: llvm-as < %s | llc -march=alpha
+; RUN: llc < %s -march=alpha
 
 target datalayout = "e-p:64:64"
-target endian = little
-target pointersize = 64
 target triple = "alphaev67-unknown-linux-gnu"
-        %struct.va_list = type { sbyte*, int, int }
+        %struct.va_list = type { i8*, i32, i32 }
 
-implementation   ; Functions:
-
-void %yyerror(int, ...) {
+define void @yyerror(i32, ...) {
 entry:
-        call void %llvm.va_start( %struct.va_list* null )
+        %va.upgrd.1 = bitcast %struct.va_list* null to i8*              ; <i8*> [#uses=1]
+        call void @llvm.va_start( i8* %va.upgrd.1 )
         ret void
 }
 
-declare void %llvm.va_start(%struct.va_list*)
+declare void @llvm.va_start(i8*)