diff options
Diffstat (limited to 'test/FrontendC/2006-09-28-SimpleAsm.c')
-rw-r--r-- | test/FrontendC/2006-09-28-SimpleAsm.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/FrontendC/2006-09-28-SimpleAsm.c b/test/FrontendC/2006-09-28-SimpleAsm.c deleted file mode 100644 index e3040200a6..0000000000 --- a/test/FrontendC/2006-09-28-SimpleAsm.c +++ /dev/null @@ -1,10 +0,0 @@ -// 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 %= %% "); -} |