blob: 665429b4e8eec23b4fd69a54a9ba31809bd4b01a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
; RUN: llvm-as < %s | llc
target endian = big
target pointersize = 32
target triple = "powerpc-apple-darwin8.2.0"
implementation ; Functions:
void %bar(int %G, int %E, int %F, int %A, int %B, int %C, int %D, sbyte* %fmt, ...) {
%ap = alloca sbyte* ; <sbyte**> [#uses=2]
call void %llvm.va_start( sbyte** %ap )
%tmp.1 = load sbyte** %ap ; <sbyte*> [#uses=1]
%tmp.0 = call double %foo( sbyte* %tmp.1 ) ; <double> [#uses=0]
ret void
}
declare void %llvm.va_start(sbyte**)
declare double %foo(sbyte*)
|