aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 %= %% ");
+}