aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-02-04 19:07:06 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-02-04 19:07:06 +0000
commit6fdce6590261476964cb921a959ed83353e8b096 (patch)
tree70dfa573452f9d8b0585a5972279b9bf2b1dae4e /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
parentf9c3b228e5579e0d2a9cd05a2191fe17b4c58b23 (diff)
Fix typo Duncan noticed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 201e899bd6..cf342c793b 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -4240,7 +4240,7 @@ isInTailCallPosition(CallSite CS, Attributes CalleeRetAttr,
if ((CalleeRetAttr ^ CallerRetAttr) & ~Attribute::NoAlias)
return false;
- // It's not safe to eliminate thee sign / zero extension of the return value.
+ // It's not safe to eliminate the sign / zero extension of the return value.
if ((CallerRetAttr & Attribute::ZExt) || (CallerRetAttr & Attribute::SExt))
return false;