mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-03 00:33:09 +00:00
new testcase for PR2094. The inline asms should not pin allocas to the
stack anymore. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50397 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cea1fdd174
commit
00487995ea
12
test/CFrontend/inline-asm-mrv.c
Normal file
12
test/CFrontend/inline-asm-mrv.c
Normal file
@ -0,0 +1,12 @@
|
||||
// RUN: %llvmgcc -S %s -o - -O | not grep alloca
|
||||
// PR2094
|
||||
|
||||
int sad16_sse2(void *v, unsigned char *blk2, unsigned char *blk1,
|
||||
int stride, int h) {
|
||||
int ret;
|
||||
asm volatile( "%0 %1 %2 %3"
|
||||
: "+r" (h), "+r" (blk1), "+r" (blk2)
|
||||
: "r" ((long)stride));
|
||||
asm volatile("set %0 %1" : "=r"(ret) : "r"(blk1));
|
||||
return ret;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user