[cfe-commits] r136305 - /cfe/trunk/test/CodeGen/pr5406.c

Eric Christopher echristo at apple.com
Wed Jul 27 17:13:54 PDT 2011


Author: echristo
Date: Wed Jul 27 19:13:53 2011
New Revision: 136305

URL: http://llvm.org/viewvc/llvm-project?rev=136305&view=rev
Log:
Add a triple to this test and make sure it passes on arm where it was
supposed to.

Modified:
    cfe/trunk/test/CodeGen/pr5406.c

Modified: cfe/trunk/test/CodeGen/pr5406.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/pr5406.c?rev=136305&r1=136304&r2=136305&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/pr5406.c (original)
+++ cfe/trunk/test/CodeGen/pr5406.c Wed Jul 27 19:13:53 2011
@@ -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;





More information about the cfe-commits mailing list