summaryrefslogtreecommitdiff
path: root/test/FrontendC
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC')
-rw-r--r--test/FrontendC/ARM/inline-asm-multichar.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/FrontendC/ARM/inline-asm-multichar.c b/test/FrontendC/ARM/inline-asm-multichar.c
index fe677b7764..7e2eeef838 100644
--- a/test/FrontendC/ARM/inline-asm-multichar.c
+++ b/test/FrontendC/ARM/inline-asm-multichar.c
@@ -1,8 +1,11 @@
// RUN: %llvmgcc -S -march=armv7a %s
+// XFAIL: *
+// XTARGET: arm
+
int t1() {
static float k = 1.0f;
-// CHECK: call void asm sideeffect "flds s15, $0 \0A", "*^Uv,~{s15}"
+CHECK: call void asm sideeffect "flds s15, $0 \0A", "*^Uv,~{s15}"
__asm__ volatile ("flds s15, %[k] \n" :: [k] "Uv,m" (k) : "s15");
return 0;
}