diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/GCSE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/GCSE.cpp b/llvm/lib/Transforms/Scalar/GCSE.cpp index dd8e139efda..b467784b5e1 100644 --- a/llvm/lib/Transforms/Scalar/GCSE.cpp +++ b/llvm/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 ... |