Use false rather than 0 for a boolean value. NFC.

llvm-svn: 268279
This commit is contained in:
Chad Rosier 2016-05-02 19:06:02 +00:00
parent 9733cc18ce
commit 583671304d

View File

@ -93,7 +93,7 @@ static cl::opt<unsigned> SpecExecMaxNotHoisted(
"exceeds this limit.")); "exceeds this limit."));
static cl::opt<bool> SpecExecOnlyIfDivergentTarget( static cl::opt<bool> SpecExecOnlyIfDivergentTarget(
"spec-exec-only-if-divergent-target", cl::init(0), cl::Hidden, "spec-exec-only-if-divergent-target", cl::init(false), cl::Hidden,
cl::desc("Speculative execution is applied only to targets with divergent " cl::desc("Speculative execution is applied only to targets with divergent "
"branches, even if the pass was configured to apply only to all " "branches, even if the pass was configured to apply only to all "
"targets.")); "targets."));