From: Galina Kistanova Date: Fri, 10 Jun 2011 05:35:25 +0000 (+0000) Subject: Reverted r132785. It seems this test needs more research. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=993200d8b28fbe54448829a2c63c52d44c8de9b6;p=oota-llvm.git Reverted r132785. It seems this test needs more research. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132836 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/FrontendC/ARM/inline-asm-multichar.c b/test/FrontendC/ARM/inline-asm-multichar.c index fe677b77646..7e2eeef8382 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; }