Add a triple to this test and make sure it passes on arm where it was

supposed to.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136305 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2011-07-28 00:13:53 +00:00
Родитель 0bbe4b1dee
Коммит d3e46ddf11
1 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -1,14 +1,11 @@
// RUN: %clang_cc1 %s -emit-llvm -O0 -o - | FileCheck %s
// RUN: %clang_cc1 %s -emit-llvm -triple arm-apple-darwin -o - | FileCheck %s
// PR 5406
// XFAIL: *
// XTARGET: arm
typedef struct { char x[3]; } A0;
void foo (int i, ...);
// CHECK: call void (i32, ...)* @foo(i32 1, i32 {{.*}}) nounwind
// CHECK: call arm_aapcscc void (i32, ...)* @foo(i32 1, [1 x i32] {{.*}})
int main (void)
{
A0 a3;