diff options
author | Devang Patel <dpatel@apple.com> | 2006-10-19 19:21:36 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2006-10-19 19:21:36 +0000 |
commit | df308fa7aba36d9c7ca29abe24489adbcdfff697 (patch) | |
tree | ea94877d2c91666841dc73f03ee68a81abb906e0 /lib/Transforms | |
parent | 85415ed270c9f8530c94b1acec7b60d8e2d674a3 (diff) |
Typo Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31055 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 652f7621a4..7e75dcab1d 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -4790,7 +4790,7 @@ Instruction *InstCombiner::visitSetCondInstWithCastAndCast(SetCondInst &SCI) { // %A = cast short %X to uint // %B = setgt uint %A, 1330 // - // It is incorrect to tranform this into + // It is incorrect to transform this into // // %B = setgt short %X, 1330 // |