blob: 047a12bedd81200700e8664677a9f32eda1cdd6f [file] [log] [blame]
Dan Gohmanda594cf2009-09-09 00:09:15 +00001; RUN: llc < %s
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
Tanya Lattner348c6182008-03-25 04:26:08 +00003target datalayout = "E-p:32:32"
4target triple = "powerpc-apple-darwin8.2.0"
5
6define void @bar(i32 %G, i32 %E, i32 %F, i32 %A, i32 %B, i32 %C, i32 %D, i8* %fmt, ...) {
7 %ap = alloca i8* ; <i8**> [#uses=2]
8 %va.upgrd.1 = bitcast i8** %ap to i8* ; <i8*> [#uses=1]
9 call void @llvm.va_start( i8* %va.upgrd.1 )
10 %tmp.1 = load i8** %ap ; <i8*> [#uses=1]
11 %tmp.0 = call double @foo( i8* %tmp.1 ) ; <double> [#uses=0]
12 ret void
Dan Gohmanf17a25c2007-07-18 16:29:46 +000013}
14
Tanya Lattner348c6182008-03-25 04:26:08 +000015declare void @llvm.va_start(i8*)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016
Tanya Lattner348c6182008-03-25 04:26:08 +000017declare double @foo(i8*)
18