diff options
author | Michael Kruse <llvm-project@meinersbur.de> | 2021-11-11 19:25:39 -0600 |
---|---|---|
committer | Michael Kruse <llvm-project@meinersbur.de> | 2021-11-11 19:25:39 -0600 |
commit | ed7b37155b48715dc5b2ec8c52571ce754cf7a80 (patch) | |
tree | d8c11e40d8809fe1f34fe6b89f4f72575021917b /llvm/tools/llvm-reduce/DeltaManager.cpp | |
parent | d1c8df8743429a79ffd62043f00b6e568b4d2e34 (diff) | |
download | llvm-ed7b37155b48715dc5b2ec8c52571ce754cf7a80.zip llvm-ed7b37155b48715dc5b2ec8c52571ce754cf7a80.tar.gz llvm-ed7b37155b48715dc5b2ec8c52571ce754cf7a80.tar.bz2 |
Revert "[llvm-reduce] Introduce operands-skip pass."
This reverts commit fa4210a9a0729eba04593b7df7b701e2b243de39.
It causes compile failures, presumably because conflicting with another
patch landed after I checked locally.
Diffstat (limited to 'llvm/tools/llvm-reduce/DeltaManager.cpp')
-rw-r--r-- | llvm/tools/llvm-reduce/DeltaManager.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/tools/llvm-reduce/DeltaManager.cpp b/llvm/tools/llvm-reduce/DeltaManager.cpp index 59edf73..a606502 100644 --- a/llvm/tools/llvm-reduce/DeltaManager.cpp +++ b/llvm/tools/llvm-reduce/DeltaManager.cpp @@ -30,7 +30,6 @@ #include "deltas/ReduceModuleData.h" #include "deltas/ReduceOperandBundles.h" #include "deltas/ReduceOperands.h" -#include "deltas/ReduceOperandsSkip.h" #include "deltas/ReduceOperandsToArgs.h" #include "deltas/ReduceSpecialGlobals.h" #include "llvm/Support/CommandLine.h" @@ -59,7 +58,6 @@ static cl::opt<std::string> DELTA_PASS("operands-one", reduceOperandsOneDeltaPass) \ DELTA_PASS("operands-undef", reduceOperandsUndefDeltaPass) \ DELTA_PASS("operands-to-args", reduceOperandsToArgsDeltaPass) \ - DELTA_PASS("operands-skip", reduceOperandsSkipDeltaPass) \ DELTA_PASS("operand-bundles", reduceOperandBundesDeltaPass) \ DELTA_PASS("attributes", reduceAttributesDeltaPass) \ DELTA_PASS("module-data", reduceModuleDataDeltaPass) |