Improved comments. No functional change intended.

llvm-svn: 225080
This commit is contained in:
Andrea Di Biagio 2015-01-02 10:47:46 +00:00
parent 6173e869eb
commit 6477847ef4
1 changed files with 2 additions and 2 deletions

View File

@ -3883,12 +3883,12 @@ bool X86TargetLowering::isExtractSubvectorCheap(EVT ResVT,
}
bool X86TargetLowering::isCheapToSpeculateCttz() const {
// Don't try to speculate cttz if we can't directly use TZCNT.
// Speculate cttz only if we can directly use TZCNT.
return Subtarget->hasBMI();
}
bool X86TargetLowering::isCheapToSpeculateCtlz() const {
// Don't try to speculate ctlz if we can't directly use LZCNT.
// Speculate ctlz only if we can directly use LZCNT.
return Subtarget->hasLZCNT();
}