Add an InstCombine transform to recognize instances of manual overflow-safe addition
[oota-llvm.git] / test / FrontendC / pr5406.c
index d895ec3ad3ff104a67544e6ac9464f99f6769d2b..0b1f277592fb71e91b704dbf392c663c44a66a7e 100644 (file)
@@ -1,14 +1,14 @@
-// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | FileCheck %s
+// RUN: %llvmgcc %s -S -O0 -o - | FileCheck %s
 // PR 5406
 
-// ARM test.
-// XFAIL: !arm
+// XFAIL: *
+// XTARGET: arm
 
 typedef struct { char x[3]; } A0;
 void foo (int i, ...);
 
 
-// CHECK: call arm_aapcscc  void (i32, ...)* @foo(i32 1, i32 {{.*}}) nounwind
+// CHECK: call void (i32, ...)* @foo(i32 1, i32 {{.*}}) nounwind
 int main (void)
 {
   A0 a3;