We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38611f4 commit d601782Copy full SHA for d601782
lib/SILPasses/Scalar/RedundantLoadElimination.cpp
@@ -97,9 +97,6 @@
97
98
using namespace swift;
99
100
-static llvm::cl::opt<bool> EnableGlobalRLE("enable-global-redundant-load-elim",
101
- llvm::cl::init(true));
102
-
103
STATISTIC(NumForwardedLoads, "Number of loads forwarded");
104
105
//===----------------------------------------------------------------------===//
@@ -989,8 +986,6 @@ class RedundantLoadElimination : public SILFunctionTransform {
989
986
990
987
/// The entry point to the transformation.
991
988
void run() override {
992
- if (!EnableGlobalRLE)
993
- return;
994
SILFunction *F = getFunction();
995
DEBUG(llvm::dbgs() << "***** Redundant Load Elimination on function: "
996
<< F->getName() << " *****\n");
0 commit comments