mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
ab5183047b
for the linux targets. llvm-svn: 106029
15 lines
387 B
LLVM
15 lines
387 B
LLVM
; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s
|
|
|
|
@.str = private constant [1 x i8] zeroinitializer, align 1
|
|
|
|
define void @g() {
|
|
entry:
|
|
;CHECK: [sp, #8]
|
|
;CHECK: [sp, #12]
|
|
;CHECK: [sp]
|
|
tail call void (i8*, ...)* @f(i8* getelementptr ([1 x i8]* @.str, i32 0, i32 0), i32 1, double 2.000000e+00, i32 3, double 4.000000e+00)
|
|
ret void
|
|
}
|
|
|
|
declare void @f(i8*, ...)
|