diff options
author | Wojciech Matyjewicz <wmatyjewicz@fastmail.fm> | 2008-01-04 20:02:18 +0000 |
---|---|---|
committer | Wojciech Matyjewicz <wmatyjewicz@fastmail.fm> | 2008-01-04 20:02:18 +0000 |
commit | 30e434569e9c07897cd4160d26206988b0a7188b (patch) | |
tree | 2c6977b6b1ba956a444ffa2c98b585138abd8e08 /llvm/lib | |
parent | 4899a6aa6ae4d0ed5c63779fb78ac771eebbef1d (diff) | |
download | bcm5719-llvm-30e434569e9c07897cd4160d26206988b0a7188b.tar.gz bcm5719-llvm-30e434569e9c07897cd4160d26206988b0a7188b.zip |
fix typo
llvm-svn: 45594
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopUnroll.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopUnroll.cpp b/llvm/lib/Transforms/Scalar/LoopUnroll.cpp index c24c35a3591..ff2168ac8de 100644 --- a/llvm/lib/Transforms/Scalar/LoopUnroll.cpp +++ b/llvm/lib/Transforms/Scalar/LoopUnroll.cpp @@ -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; } |