git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45594 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Wojciech Matyjewicz 2008-01-04 20:02:18 +00:00
parent ad04cb28c5
commit 21a715a124

View File

@ -207,7 +207,7 @@ bool LoopUnroll::unrollLoop(Loop *L, unsigned Count, unsigned Threshold) {
<< "] Loop %" << Header->getName() << "\n";
if (!BI || BI->isUnconditional()) {
// The loop-rorate pass can be helpful to avoid this in many cases.
// The loop-rotate pass can be helpful to avoid this in many cases.
DOUT << " Can't unroll; loop not terminated by a conditional branch.\n";
return false;
}