]> granicus.if.org Git - clang/commitdiff
Add a triple to this test and make sure it passes on arm where it was
authorEric Christopher <echristo@apple.com>
Thu, 28 Jul 2011 00:13:53 +0000 (00:13 +0000)
committerEric Christopher <echristo@apple.com>
Thu, 28 Jul 2011 00:13:53 +0000 (00:13 +0000)
supposed to.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136305 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/pr5406.c

index 9cf4203cf5a53b408a477ab7b9171fc0445620a0..da74d6b64fe5f58f497c699090ab2476816a07dd 100644 (file)
@@ -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;