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