diff options
Diffstat (limited to 'test/FrontendC/2010-11-16-asmblock.c')
-rw-r--r-- | test/FrontendC/2010-11-16-asmblock.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/FrontendC/2010-11-16-asmblock.c b/test/FrontendC/2010-11-16-asmblock.c deleted file mode 100644 index 2d97681..0000000 --- a/test/FrontendC/2010-11-16-asmblock.c +++ /dev/null @@ -1,16 +0,0 @@ -// RUN: %llvmgcc -S %s -fasm-blocks -o - | FileCheck %s -// XFAIL: * -// XTARGET: x86,i386,i686 -// 84282548 - -void foo() -{ -// CHECK: %0 = call i32 asm sideeffect "", "={ecx}"() nounwind -// CHECK: %1 = call i32 asm sideeffect alignstack "sall $$3, $0", "={ecx},{ecx},~{dirflag},~{fpsr},~{flags},~{memory}"(i32 %0) nounwind -// CHECK: store i32 %1, i32* %"%ecx" - __asm { - sal ecx, 3; - add esi, ecx; - add edi, ecx; - } -} |