[llvm] r371755 - llvm-reduce: Remove unused plugin support/requirements

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 12 11:52:31 PDT 2019


Author: dblaikie
Date: Thu Sep 12 11:52:31 2019
New Revision: 371755

URL: http://llvm.org/viewvc/llvm-project?rev=371755&view=rev
Log:
llvm-reduce: Remove unused plugin support/requirements

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

Modified: llvm/trunk/test/Reduce/remove-args.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Reduce/remove-args.ll?rev=371755&r1=371754&r2=371755&view=diff
==============================================================================
--- llvm/trunk/test/Reduce/remove-args.ll (original)
+++ llvm/trunk/test/Reduce/remove-args.ll Thu Sep 12 11:52:31 2019
@@ -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) {

Modified: llvm/trunk/test/Reduce/remove-funcs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Reduce/remove-funcs.ll?rev=371755&r1=371754&r2=371755&view=diff
==============================================================================
--- llvm/trunk/test/Reduce/remove-funcs.ll (original)
+++ llvm/trunk/test/Reduce/remove-funcs.ll Thu Sep 12 11:52:31 2019
@@ -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:

Modified: llvm/trunk/test/Reduce/remove-global-vars.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Reduce/remove-global-vars.ll?rev=371755&r1=371754&r2=371755&view=diff
==============================================================================
--- llvm/trunk/test/Reduce/remove-global-vars.ll (original)
+++ llvm/trunk/test/Reduce/remove-global-vars.ll Thu Sep 12 11:52:31 2019
@@ -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

Modified: llvm/trunk/test/Reduce/remove-metadata.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Reduce/remove-metadata.ll?rev=371755&r1=371754&r2=371755&view=diff
==============================================================================
--- llvm/trunk/test/Reduce/remove-metadata.ll (original)
+++ llvm/trunk/test/Reduce/remove-metadata.ll Thu Sep 12 11:52:31 2019
@@ -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
 

Modified: llvm/trunk/tools/llvm-reduce/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-reduce/CMakeLists.txt?rev=371755&r1=371754&r2=371755&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-reduce/CMakeLists.txt (original)
+++ llvm/trunk/tools/llvm-reduce/CMakeLists.txt Thu Sep 12 11:52:31 2019
@@ -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)




More information about the llvm-commits mailing list