From bac74584f1ad4026105d6d4d0d4ba794e2cbc66b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 1 Feb 2003 04:50:59 +0000 Subject: [PATCH] Fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5458 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/GCSE.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/GCSE.cpp b/lib/Transforms/Scalar/GCSE.cpp index dd8e139efda..b467784b5e1 100644 --- a/lib/Transforms/Scalar/GCSE.cpp +++ b/lib/Transforms/Scalar/GCSE.cpp @@ -233,7 +233,7 @@ Instruction *GCSE::EliminateCSE(Instruction *I, Instruction *Other) { // // Here there are no shared dominators. Additionally, this had the habit of // moving computations where they were not always computed. For example, in - // a cast like this: + // a case like this: // if (c) { // if (d) ... // else ... X+Y ...