Test for llvm-gcc patch 119392.

llvm-svn: 119393
This commit is contained in:
Dale Johannesen 2010-11-16 21:57:15 +00:00
parent 58dffe641b
commit fc4feca7d8
1 changed files with 16 additions and 0 deletions

View 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;
}
}