diff options
author | Chris Lattner <sabre@nondot.org> | 2008-05-06 02:31:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-05-06 02:31:18 +0000 |
commit | de68fabb351b4b8be029661c4f7447e6b2b07dac (patch) | |
tree | 6dc6892a54cdbfbae9846355fbee68be59ca0e79 /llvm/lib/Transforms/Scalar/JumpThreading.cpp | |
parent | 888594bdf47e595a25c56fd8bd11bed7f7951fea (diff) | |
download | bcm5719-llvm-de68fabb351b4b8be029661c4f7447e6b2b07dac.tar.gz bcm5719-llvm-de68fabb351b4b8be029661c4f7447e6b2b07dac.zip |
fix typo Duncan noticed
llvm-svn: 50699
Diffstat (limited to 'llvm/lib/Transforms/Scalar/JumpThreading.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/JumpThreading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp index 1a2ec9901d5..991b11110b4 100644 --- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp +++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp @@ -445,7 +445,7 @@ void JumpThreading::ThreadEdge(BasicBlock *BB, BasicBlock *PredBB, } // Alternatively, I must be a call or invoke that returns multiple retvals. - // We can't use 'DemoteRegToStack' because the at will create loads and + // We can't use 'DemoteRegToStack' because that will create loads and // stores of aggregates which is not valid yet. If I is a call, we can just // pull all the getresult instructions up to this block. If I is an invoke, // we are out of luck. |