Reverted r132785. It seems this test needs more research.

llvm-svn: 132836
This commit is contained in:
Galina Kistanova 2011-06-10 05:35:25 +00:00
parent 899bd447cf
commit 77f3811172
1 changed files with 4 additions and 1 deletions

View File

@ -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;
}