llvm-reduce: Remove unused plugin support/requirements
authorDavid Blaikie <dblaikie@gmail.com>
Thu, 12 Sep 2019 18:52:31 +0000 (18:52 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Thu, 12 Sep 2019 18:52:31 +0000 (18:52 +0000)
llvm-svn: 371755

llvm/test/Reduce/remove-args.ll
llvm/test/Reduce/remove-funcs.ll
llvm/test/Reduce/remove-global-vars.ll
llvm/test/Reduce/remove-metadata.ll
llvm/tools/llvm-reduce/CMakeLists.txt

index 6aadeb57d839c8316db26eaf4bf08ee1cd2bc5f1..6b5332a346064a88b00b6723f313046883d59c4b 100644 (file)
@@ -11,7 +11,6 @@
 
 ; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll
 ; RUN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s
-; REQUIRES: plugins
 
 ; CHECK: @interesting(i32 %interesting)
 define void @interesting(i32 %uninteresting1, i32 %interesting, i32 %uninteresting2) {
index d8b493d819c4103ff4536f1a52aa71efd86fc5e7..d2d380e2bc181ca5b5434318e591a1cfc6fb222e 100644 (file)
@@ -12,7 +12,6 @@
 
 ; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll
 ; RUN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s
-; REQUIRES: plugins
 
 define i32 @uninteresting1() {
 entry:
index d9fb997d837f99e543dcdc7c5711e48cfaf80f2a..100cf2f35e9896203699b2337aef0e743133b285 100644 (file)
@@ -12,7 +12,6 @@
 
 ; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll
 ; RUN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s
-; REQUIRES: plugins
 
 ; CHECK: @interesting = global
 @interesting = global i32 0, align 4
index aef2df0deabb03a0c0ab653ba5c462f607257f0c..c07c243a100304973c4a5fdcfd5c5bec0ff4b0c4 100644 (file)
@@ -12,7 +12,6 @@
 
 ; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll
 ; RUN: cat %t/out.ll | FileCheck -implicit-check-not=! %s
-; REQUIRES: plugins
 
 @global = global i32 0, !dbg !0
 
index b981ffcfc070d5c4975730d1053e9a1f22f23517..c64b642f8250a1a09a8e6a4229434d946ce3face 100644 (file)
@@ -10,9 +10,6 @@ set(LLVM_LINK_COMPONENTS
   TransformUtils
   )
 
-# Support plugins.
-set(LLVM_NO_DEAD_STRIP 1)
-
 add_llvm_tool(llvm-reduce
   llvm-reduce.cpp
   TestRunner.cpp
@@ -25,4 +22,3 @@ add_llvm_tool(llvm-reduce
   DEPENDS
   intrinsics_gen
   )
-export_executable_symbols(llvm-reduce)