summaryrefslogtreecommitdiff
path: root/lib/CodeGen/ScheduleDAGInstrs.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-07 01:26:06 +0000
committerDan Gohman <gohman@apple.com>2009-08-07 01:26:06 +0000
commit748f98f90836dbb4c36fea67c9ebe7b6bb13255e (patch)
tree82c6c9371bc030d2bfae01e91b5b3b32ee2506fd /lib/CodeGen/ScheduleDAGInstrs.cpp
parent861986401e05e437cb33bfd8320d510b956fe41e (diff)
downloadllvm-748f98f90836dbb4c36fea67c9ebe7b6bb13255e.tar.gz
llvm-748f98f90836dbb4c36fea67c9ebe7b6bb13255e.tar.bz2
llvm-748f98f90836dbb4c36fea67c9ebe7b6bb13255e.tar.xz
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ScheduleDAGInstrs.cpp')
-rw-r--r--lib/CodeGen/ScheduleDAGInstrs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ScheduleDAGInstrs.cpp b/lib/CodeGen/ScheduleDAGInstrs.cpp
index 221fd8b098..cb689cdc8a 100644
--- a/lib/CodeGen/ScheduleDAGInstrs.cpp
+++ b/lib/CodeGen/ScheduleDAGInstrs.cpp
@@ -58,7 +58,7 @@ static const Value *getUnderlyingObjectFromInt(const Value *V) {
// If we find an add of a constant or a multiplied value, it's
// likely that the other operand will lead us to the base
// object. We don't have to worry about the case where the
- // object address is somehow being computed bt the multiply,
+ // object address is somehow being computed by the multiply,
// because our callers only care when the result is an
// identifibale object.
if (U->getOpcode() != Instruction::Add ||