summaryrefslogtreecommitdiff
path: root/test/Other/extract.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-09-23 00:33:13 +0000
committerDan Gohman <gohman@apple.com>2010-09-23 00:33:13 +0000
commitbe2d4e77b5312b8cdaee4b83810cdd98ef9abcda (patch)
tree5f795d9739f29c7a4bb2e5a5367bf1210fef68f6 /test/Other/extract.ll
parent637d89fe0eca4fa2b9c95f6c15eb69a99bae83bc (diff)
downloadllvm-be2d4e77b5312b8cdaee4b83810cdd98ef9abcda.tar.gz
llvm-be2d4e77b5312b8cdaee4b83810cdd98ef9abcda.tar.bz2
llvm-be2d4e77b5312b8cdaee4b83810cdd98ef9abcda.tar.xz
Fix llvm-extract -delete's lazy loading to materialize the functions that
will not be deleted, rather than the ones that will. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Other/extract.ll')
-rw-r--r--test/Other/extract.ll22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/Other/extract.ll b/test/Other/extract.ll
new file mode 100644
index 0000000000..46962d094f
--- /dev/null
+++ b/test/Other/extract.ll
@@ -0,0 +1,22 @@
+; RUN: llvm-extract -func foo -S < %s | FileCheck %s
+; RUN: llvm-extract -delete -func foo -S < %s | FileCheck --check-prefix=DELETE %s
+; RUN: llvm-as < %s > %t
+; RUN: llvm-extract -func foo -S %t | FileCheck %s
+; RUN: llvm-extract -delete -func foo -S %t | FileCheck --check-prefix=DELETE %s
+
+; llvm-extract uses lazy bitcode loading, so make sure it correctly reads
+; from bitcode files in addition to assembly files.
+
+; CHECK: define void @foo() {
+; CHECK: ret void
+; CHECK: }
+; DELETE: define void @bar() {
+; DELETE: ret void
+; DELETE: }
+
+define void @foo() {
+ ret void
+}
+define void @bar() {
+ ret void
+}