diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-29 05:53:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-29 05:53:29 +0000 |
commit | 00487995ea3ea4fec1ebcde5332b1b1a4a91345f (patch) | |
tree | 92cea616800874f16e02034d2b3c881c7d3a41d6 | |
parent | cea1fdd1748e06455940d3aa8a258ab65f232840 (diff) |
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
-rw-r--r-- | test/CFrontend/inline-asm-mrv.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CFrontend/inline-asm-mrv.c b/test/CFrontend/inline-asm-mrv.c new file mode 100644 index 0000000000..6d1df67af1 --- /dev/null +++ b/test/CFrontend/inline-asm-mrv.c @@ -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; +} |