mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-19 02:03:11 +00:00
Test for llvm-gcc patch 119392.
llvm-svn: 119393
This commit is contained in:
parent
3f10b03cc5
commit
0cd940f72b
16
test/FrontendC/2010-11-16-asmblock.c
Normal file
16
test/FrontendC/2010-11-16-asmblock.c
Normal file
@ -0,0 +1,16 @@
|
||||
// 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: %asmtmp = call i32 asm sideeffect alignstack "sall $$3, $0", "={ecx},{ecx},~{dirflag},~{fpsr},~{flags},~{memory}"(i32 %0) nounwind
|
||||
// CHECK: store i32 %asmtmp, i32* %"%ecx"
|
||||
__asm {
|
||||
sal ecx, 3;
|
||||
add esi, ecx;
|
||||
add edi, ecx;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user