diff options
author | Devang Patel <dpatel@apple.com> | 2008-05-06 05:40:11 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-05-06 05:40:11 +0000 |
commit | 7ffc3c9a954ccd4a74aced52405d674db2a816b7 (patch) | |
tree | de12384ef923f8891a9d9554201bfd16f8857da3 /llvm/lib/Transforms | |
parent | 2f08fedec1f4c6f92ff4afb4aeda07bc36d953aa (diff) | |
download | bcm5719-llvm-7ffc3c9a954ccd4a74aced52405d674db2a816b7.tar.gz bcm5719-llvm-7ffc3c9a954ccd4a74aced52405d674db2a816b7.zip |
Fix typo.
llvm-svn: 50713
Diffstat (limited to 'llvm/lib/Transforms')
-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 461d5fc7803..de29efa497d 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp @@ -11389,7 +11389,7 @@ bool InstCombiner::DoOneIteration(Function &F, unsigned Iteration) { } // See if we can trivially sink this instruction to a successor basic block. - // FIXME: Remove GetREsultInst test when first class support for aggregates is + // FIXME: Remove GetResultInst test when first class support for aggregates is // implemented. if (I->hasOneUse() && !isa<GetResultInst>(I)) { BasicBlock *BB = I->getParent(); |