From: Chris Lattner Date: Tue, 9 Nov 2004 05:07:01 +0000 (+0000) Subject: Name file properly X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2fc09aec718177b7a97ee0382fb58b5035a38cf0;p=oota-llvm.git Name file properly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17641 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/RaiseAllocations/2004-11-08-FreeUseCrash.ll b/test/Transforms/RaiseAllocations/2004-11-08-FreeUseCrash.ll new file mode 100644 index 00000000000..0e229c69a95 --- /dev/null +++ b/test/Transforms/RaiseAllocations/2004-11-08-FreeUseCrash.ll @@ -0,0 +1,10 @@ +; RUN: llvm-as < %s | opt -raiseallocs -disable-output +implementation ; Functions: + +void %main() { + %tmp.13 = call int (...)* %free( int 32 ) + %tmp.14 = cast int %tmp.13 to int* + ret void +} + +declare int %free(...) diff --git a/test/Transforms/RaiseAllocations/test.ll b/test/Transforms/RaiseAllocations/test.ll deleted file mode 100644 index 0e229c69a95..00000000000 --- a/test/Transforms/RaiseAllocations/test.ll +++ /dev/null @@ -1,10 +0,0 @@ -; RUN: llvm-as < %s | opt -raiseallocs -disable-output -implementation ; Functions: - -void %main() { - %tmp.13 = call int (...)* %free( int 32 ) - %tmp.14 = cast int %tmp.13 to int* - ret void -} - -declare int %free(...)