Skip to content

Commit

Permalink
Disabling --solver-optimize-divides by default, as the optimization i…
Browse files Browse the repository at this point in the history
…s currently buggy, and we keep hitting this bug... See klee#334 for details.
  • Loading branch information
ccadar committed Apr 14, 2016
1 parent 7616398 commit 9efe135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Basic/CmdLineOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ UseForkedCoreSolver("use-forked-solver",

llvm::cl::opt<bool>
CoreSolverOptimizeDivides("solver-optimize-divides",
llvm::cl::desc("Optimize constant divides into add/shift/multiplies before passing to core SMT solver (default=on)"),
llvm::cl::init(true));
llvm::cl::desc("Optimize constant divides into add/shift/multiplies before passing to core SMT solver (default=off)"),
llvm::cl::init(false));


/* Using cl::list<> instead of cl::bits<> results in quite a bit of ugliness when it comes to checking
Expand Down

0 comments on commit 9efe135

Please sign in to comment.