Name file properly
authorChris Lattner <sabre@nondot.org>
Tue, 9 Nov 2004 05:07:01 +0000 (05:07 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 9 Nov 2004 05:07:01 +0000 (05:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17641 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/RaiseAllocations/2004-11-08-FreeUseCrash.ll [new file with mode: 0644]
test/Transforms/RaiseAllocations/test.ll [deleted file]

diff --git a/test/Transforms/RaiseAllocations/2004-11-08-FreeUseCrash.ll b/test/Transforms/RaiseAllocations/2004-11-08-FreeUseCrash.ll
new file mode 100644 (file)
index 0000000..0e229c6
--- /dev/null
@@ -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 (file)
index 0e229c6..0000000
+++ /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(...)