aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-28 18:58:02 +0000
committerChris Lattner <sabre@nondot.org>2006-09-28 18:58:02 +0000
commit2a0b2b292af1b67187a48546a2abb8182e233dca (patch)
tree72540895226c3a0707b2690a8a354a55d90f98fc
parent5feaa9a70716e9181a9b940236bc461f2a75334a (diff)
Testcase for PR924
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30649 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CFrontend/2006-09-28-SimpleAsm.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CFrontend/2006-09-28-SimpleAsm.c b/test/CFrontend/2006-09-28-SimpleAsm.c
new file mode 100644
index 0000000000..ca8dbac380
--- /dev/null
+++ b/test/CFrontend/2006-09-28-SimpleAsm.c
@@ -0,0 +1,11 @@
+// RUN: %llvmgcc %s -S -o /dev/null &&
+// RUN: %llvmgcc %s -S -o - | grep 'ext: xorl %eax, eax; movl' &&
+// RUN: %llvmgcc %s -S -o - | grep 'nonext: xorl %eax, %eax; mov'
+// PR924
+
+void bar() {
+ // Extended asm
+ asm volatile ("ext: xorl %%eax, eax; movl eax, fs; movl eax, gs %%blah %= %% " : : "r"(1));
+ // Non-extended asm.
+ asm volatile ("nonext: xorl %eax, %eax; movl %eax, %fs; movl %eax, %gs %%blah %= %% ");
+}