diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-08 23:18:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-08 23:18:37 +0000 |
commit | 0da31d6648fd65ad304da1ec6731f9c517672a3b (patch) | |
tree | d7fce02f23187c40d23e8dfd4a0468e6ccbc0c9b /llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp | |
parent | 89352b53c4f729e7c739e73777e6ff447aaf3d93 (diff) | |
download | bcm5719-llvm-0da31d6648fd65ad304da1ec6731f9c517672a3b.tar.gz bcm5719-llvm-0da31d6648fd65ad304da1ec6731f9c517672a3b.zip |
Fix spelling error
llvm-svn: 4645
Diffstat (limited to 'llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp b/llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp index 6ba60675fe9..cb8bd6109c1 100644 --- a/llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp +++ b/llvm/lib/Transforms/Scalar/CorrelatedExprs.cpp @@ -542,7 +542,7 @@ void CEE::ForwardSuccessorTo(TerminatorInst *TI, unsigned SuccNo, // Create and insert the PHI node into the top of Dest. PHINode *NewPN = new PHINode(I->getType(), I->getName()+".fw_merge", Dest->begin()); - // There is definately an edge from OldSucc... add the edge now + // There is definitely an edge from OldSucc... add the edge now NewPN->addIncoming(I, OldSucc); // There is also an edge from BB now, add the edge with the calculated |