summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/CodeGenPrepare.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-06-14 23:30:43 +0000
committerDan Gohman <gohman@apple.com>2009-06-14 23:30:43 +0000
commita119de86a064414622562cfe32953de7f9b0ee40 (patch)
tree456afbf76527eaa49d51f3d4777dfa6df0787667 /lib/Transforms/Scalar/CodeGenPrepare.cpp
parentbd59d7b603c364da52097f171a110a19c886f7bb (diff)
downloadllvm-a119de86a064414622562cfe32953de7f9b0ee40.tar.gz
llvm-a119de86a064414622562cfe32953de7f9b0ee40.tar.bz2
llvm-a119de86a064414622562cfe32953de7f9b0ee40.tar.xz
Fix old-style type names in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/CodeGenPrepare.cpp')
-rw-r--r--lib/Transforms/Scalar/CodeGenPrepare.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/CodeGenPrepare.cpp b/lib/Transforms/Scalar/CodeGenPrepare.cpp
index 42978e753d..e9bee6408f 100644
--- a/lib/Transforms/Scalar/CodeGenPrepare.cpp
+++ b/lib/Transforms/Scalar/CodeGenPrepare.cpp
@@ -401,8 +401,8 @@ static void SplitEdgeNicely(TerminatorInst *TI, unsigned SuccNum,
/// OptimizeNoopCopyExpression - If the specified cast instruction is a noop
-/// copy (e.g. it's casting from one pointer type to another, int->uint, or
-/// int->sbyte on PPC), sink it into user blocks to reduce the number of virtual
+/// copy (e.g. it's casting from one pointer type to another, i32->i8 on PPC),
+/// sink it into user blocks to reduce the number of virtual
/// registers that must be created and coalesced.
///
/// Return true if any changes are made.