From a75e1490232122f3558985a94c330666fd22b789 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 6 May 2008 02:31:18 +0000 Subject: [PATCH] fix typo Duncan noticed llvm-svn: 50699 --- lib/Transforms/Scalar/JumpThreading.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/JumpThreading.cpp b/lib/Transforms/Scalar/JumpThreading.cpp index 1a2ec9901d5..991b11110b4 100644 --- a/lib/Transforms/Scalar/JumpThreading.cpp +++ b/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.