summaryrefslogtreecommitdiff
path: root/test/CodeGen/Alpha/2006-11-01-vastart.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Alpha/2006-11-01-vastart.ll')
-rw-r--r--test/CodeGen/Alpha/2006-11-01-vastart.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/CodeGen/Alpha/2006-11-01-vastart.ll b/test/CodeGen/Alpha/2006-11-01-vastart.ll
new file mode 100644
index 000000000000..3f42eda4beb5
--- /dev/null
+++ b/test/CodeGen/Alpha/2006-11-01-vastart.ll
@@ -0,0 +1,15 @@
+; RUN: llvm-as < %s | llc -march=alpha
+
+target datalayout = "e-p:64:64"
+target triple = "alphaev67-unknown-linux-gnu"
+ %struct.va_list = type { i8*, i32, i32 }
+
+define void @yyerror(i32, ...) {
+entry:
+ %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(i8*)
+