diff options
author | Chris Lattner <sabre@nondot.org> | 2003-02-01 04:50:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-02-01 04:50:59 +0000 |
commit | bac74584f1ad4026105d6d4d0d4ba794e2cbc66b (patch) | |
tree | ded5027c7e7d27222edcf084d18bcaf8c8c60089 /lib | |
parent | 7f306c8dcf9c36b73ba1c34ba5f33edf097e8937 (diff) |
Fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5458 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Scalar/GCSE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/GCSE.cpp b/lib/Transforms/Scalar/GCSE.cpp index dd8e139efd..b467784b5e 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 ... |