From c8a342337b09f5342193d86176eaa981b4d59ee5 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Thu, 12 Sep 2019 18:52:31 +0000 Subject: [PATCH] llvm-reduce: Remove unused plugin support/requirements git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371755 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Reduce/remove-args.ll | 1 - test/Reduce/remove-funcs.ll | 1 - test/Reduce/remove-global-vars.ll | 1 - test/Reduce/remove-metadata.ll | 1 - tools/llvm-reduce/CMakeLists.txt | 4 ---- 5 files changed, 8 deletions(-) diff --git a/test/Reduce/remove-args.ll b/test/Reduce/remove-args.ll index 6aadeb57d83..6b5332a3460 100644 --- a/test/Reduce/remove-args.ll +++ b/test/Reduce/remove-args.ll @@ -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) { diff --git a/test/Reduce/remove-funcs.ll b/test/Reduce/remove-funcs.ll index d8b493d819c..d2d380e2bc1 100644 --- a/test/Reduce/remove-funcs.ll +++ b/test/Reduce/remove-funcs.ll @@ -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: diff --git a/test/Reduce/remove-global-vars.ll b/test/Reduce/remove-global-vars.ll index d9fb997d837..100cf2f35e9 100644 --- a/test/Reduce/remove-global-vars.ll +++ b/test/Reduce/remove-global-vars.ll @@ -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 diff --git a/test/Reduce/remove-metadata.ll b/test/Reduce/remove-metadata.ll index aef2df0deab..c07c243a100 100644 --- a/test/Reduce/remove-metadata.ll +++ b/test/Reduce/remove-metadata.ll @@ -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 diff --git a/tools/llvm-reduce/CMakeLists.txt b/tools/llvm-reduce/CMakeLists.txt index b981ffcfc07..c64b642f825 100644 --- a/tools/llvm-reduce/CMakeLists.txt +++ b/tools/llvm-reduce/CMakeLists.txt @@ -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) -- 2.40.0