summaryrefslogtreecommitdiff
path: root/release_23/test/Transforms/RaiseAllocations/FreeCastConstantExpr.ll
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/test/Transforms/RaiseAllocations/FreeCastConstantExpr.ll')
-rw-r--r--release_23/test/Transforms/RaiseAllocations/FreeCastConstantExpr.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/release_23/test/Transforms/RaiseAllocations/FreeCastConstantExpr.ll b/release_23/test/Transforms/RaiseAllocations/FreeCastConstantExpr.ll
deleted file mode 100644
index 4521581b3879..000000000000
--- a/release_23/test/Transforms/RaiseAllocations/FreeCastConstantExpr.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; This situation can occur due to the funcresolve pass.
-;
-; RUN: llvm-as < %s | opt -raiseallocs | llvm-dis | not grep call
-
-declare void @free(i8*)
-
-define void @test(i32* %P) {
- call void bitcast (void (i8*)* @free to void (i32*)*)( i32* %P )
- ret void
-}
-