aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy David <guyda96@gmail.com>2025-10-23 13:23:39 +0300
committerGuy David <guyda96@gmail.com>2025-10-23 13:24:16 +0300
commit728b709d4bf7113c8b6a2dd06681f35a3a86a749 (patch)
tree3a2849453dec8d1de5667a78e947cf36a3cfaba1
parent2e7afb11706e474af6801e63daa8085479cdd08d (diff)
downloadllvm-users/guy-david/avoid-speculation-false.zip
llvm-users/guy-david/avoid-speculation-false.tar.gz
llvm-users/guy-david/avoid-speculation-false.tar.bz2
-rw-r--r--llvm/lib/CodeGen/MachineLICM.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineLICM.cpp b/llvm/lib/CodeGen/MachineLICM.cpp
index 7acddff..c8b5471 100644
--- a/llvm/lib/CodeGen/MachineLICM.cpp
+++ b/llvm/lib/CodeGen/MachineLICM.cpp
@@ -58,9 +58,9 @@ using namespace llvm;
#define DEBUG_TYPE "machinelicm"
static cl::opt<bool>
-AvoidSpeculation("avoid-speculation",
- cl::desc("MachineLICM should avoid speculation"),
- cl::init(true), cl::Hidden);
+ AvoidSpeculation("avoid-speculation",
+ cl::desc("MachineLICM should avoid speculation"),
+ cl::init(false), cl::Hidden);
static cl::opt<bool>
HoistCheapInsts("hoist-cheap-insts",