diff options
author | Andrew Trick <atrick@apple.com> | 2010-11-20 07:26:51 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2010-11-20 07:26:51 +0000 |
commit | b9e6fe1e3afe3c4cdbdddfb563adc10c439dc296 (patch) | |
tree | 47f551406bbbd953259e2413ee4eb20df26dc8de /test | |
parent | 316df4bfe3db625a4394ff018c51d61f223aad86 (diff) |
Removing the useless test that I added recently. It was meant as an example, but not complicated enough to merit another test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119898 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/Generic/2010-11-11-ReturnBigBuffer.ll | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/test/CodeGen/Generic/2010-11-11-ReturnBigBuffer.ll b/test/CodeGen/Generic/2010-11-11-ReturnBigBuffer.ll deleted file mode 100644 index bf5939dc3c..0000000000 --- a/test/CodeGen/Generic/2010-11-11-ReturnBigBuffer.ll +++ /dev/null @@ -1,32 +0,0 @@ -; RUN: llc < %s -; PR8287: SelectionDag scheduling time. -; Yes, some front end really produces this code. But that is a -; separate bug. This is more an example than a real test, because I -; don't know how give llvm-lit a timeout. - -define void @foo([4096 x i8]* %arg1, [4096 x i8]* %arg2) { - %buffer = alloca [4096 x i8] - %pbuf = alloca [4096 x i8]* - store [4096 x i8]* %buffer, [4096 x i8]** %pbuf - - %parg1 = alloca [4096 x i8]* - store [4096 x i8]* %arg1, [4096 x i8]** %parg1 - - %parg2 = alloca [4096 x i8]* - store [4096 x i8]* %arg2, [4096 x i8]** %parg2 - - ; The original test case has intermediate blocks. - ; Presumably something fills in "buffer". - - %bufferCopy1 = load [4096 x i8]** %pbuf - %dataCopy1 = load [4096 x i8]* %bufferCopy1 - %arg1Copy = load [4096 x i8]** %parg1 - store [4096 x i8] %dataCopy1, [4096 x i8]* %arg1Copy - - %bufferCopy2 = load [4096 x i8]** %pbuf - %dataCopy2 = load [4096 x i8]* %bufferCopy2 - %arg2Copy = load [4096 x i8]** %parg2 - store [4096 x i8] %dataCopy2, [4096 x i8]* %arg2Copy - - ret void -} |