Fix this test to actually check something and be able to be compiled.
authorEric Christopher <echristo@apple.com>
Mon, 27 Jun 2011 22:30:14 +0000 (22:30 +0000)
committerEric Christopher <echristo@apple.com>
Mon, 27 Jun 2011 22:30:14 +0000 (22:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133952 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC/ARM/inline-asm-multichar.c

index 7e2eeef8382959c124b5ee3f7149e9e9eb024189..bd883903262dd0ce6443c942f45a607c091cf758 100644 (file)
@@ -1,11 +1,11 @@
-// RUN: %llvmgcc -S -march=armv7a %s 
+// RUN: %llvmgcc -S -march=armv7a %s | FileCheck %s
 
 // XFAIL: *
 // XTARGET: arm
 
 int t1() {
   static float k = 1.0f;
-CHECK: call void asm sideeffect "flds s15, $0 \0A", "*^Uv,~{s15}"
+  // CHECK: "flds s15, $0 \0A", "*^Uv,~{s15}"
   __asm__ volatile ("flds s15, %[k] \n" :: [k] "Uv,m" (k) : "s15");
   return 0;
 }