diff options
author | Devang Patel <dpatel@apple.com> | 2006-10-19 19:05:38 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2006-10-19 19:05:38 +0000 |
commit | 472530d9fca9116ddf20977ebacbe494030ba7fc (patch) | |
tree | 964f591ec18ec3e7d68bd65ddcbb9164573687a8 /llvm/lib/Transforms/Scalar/InstructionCombining.cpp | |
parent | b42aef4925b7679268f222b3ba55b08b66bdcb37 (diff) | |
download | bcm5719-llvm-472530d9fca9116ddf20977ebacbe494030ba7fc.tar.gz bcm5719-llvm-472530d9fca9116ddf20977ebacbe494030ba7fc.zip |
Typo.
llvm-svn: 31054
Diffstat (limited to 'llvm/lib/Transforms/Scalar/InstructionCombining.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 9ebb5305b6f..652f7621a4a 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/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 transformt this into + // It is incorrect to tranform this into // // %B = setgt short %X, 1330 // |