1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CodeGen/Alpha/2006-11-01-vastart.ll

16 lines
404 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc -march=alpha
2006-11-02 04:04:37 +01:00
target datalayout = "e-p:64:64"
target triple = "alphaev67-unknown-linux-gnu"
%struct.va_list = type { i8*, i32, i32 }
2006-11-02 04:04:37 +01:00
define void @yyerror(i32, ...) {
2006-11-02 04:04:37 +01:00
entry:
%va.upgrd.1 = bitcast %struct.va_list* null to i8* ; <i8*> [#uses=1]
call void @llvm.va_start( i8* %va.upgrd.1 )
2006-11-02 04:04:37 +01:00
ret void
}
declare void @llvm.va_start(i8*)
2006-11-02 04:04:37 +01:00