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 fc28827216
commit 4466ff50eb
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ static cl::opt<unsigned> SpecExecMaxNotHoisted(
"exceeds this limit."));
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 "
"branches, even if the pass was configured to apply only to all "
"targets."));