summaryrefslogtreecommitdiff
path: root/external/bsd/llvm/dist/clang/test/CodeGen/thinlto-emit-llvm.c
diff options
context:
space:
mode:
Diffstat (limited to 'external/bsd/llvm/dist/clang/test/CodeGen/thinlto-emit-llvm.c')
-rw-r--r--external/bsd/llvm/dist/clang/test/CodeGen/thinlto-emit-llvm.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/external/bsd/llvm/dist/clang/test/CodeGen/thinlto-emit-llvm.c b/external/bsd/llvm/dist/clang/test/CodeGen/thinlto-emit-llvm.c
deleted file mode 100644
index d6ef6650243..00000000000
--- a/external/bsd/llvm/dist/clang/test/CodeGen/thinlto-emit-llvm.c
+++ /dev/null
@@ -1,10 +0,0 @@
-// Test to ensure -emit-llvm and -emit-llvm-bc work when invoking the
-// ThinLTO backend path.
-// RUN: %clang -O2 %s -flto=thin -c -o %t.o
-// RUN: llvm-lto -thinlto -o %t %t.o
-// RUN: %clang_cc1 -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -emit-llvm -o - | FileCheck %s
-// RUN: %clang_cc1 -O2 -x ir %t.o -fthinlto-index=%t.thinlto.bc -emit-llvm-bc -o - | llvm-dis -o - | FileCheck %s
-
-// CHECK: define{{.*}} void @foo()
-void foo() {
-}