aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-05-06 05:40:11 +0000
committerDevang Patel <dpatel@apple.com>2008-05-06 05:40:11 +0000
commit6659f2e2390ca7cea582f5f96cefc9572fa44115 (patch)
tree6d07704bd7841453ec2b04c2c8ed3719b03ae0bf /lib/Transforms/Scalar
parent347e42252f2325ddc3e8dad15436c6f5faf0c9a9 (diff)
downloadexternal_llvm-6659f2e2390ca7cea582f5f96cefc9572fa44115.zip
external_llvm-6659f2e2390ca7cea582f5f96cefc9572fa44115.tar.gz
external_llvm-6659f2e2390ca7cea582f5f96cefc9572fa44115.tar.bz2
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar')
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 461d5fc..de29efa 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/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();