Skip to content

Commit

Permalink
Reverted r132785. It seems this test needs more research.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132836 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
gkistanova committed Jun 10, 2011
1 parent 0d6d34c commit 993200d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/FrontendC/ARM/inline-asm-multichar.c
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 993200d

Please sign in to comment.