diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-02-04 19:07:06 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-02-04 19:07:06 +0000 |
commit | 0a4fa4ca93d2e029af9789be25a9753606f49a46 (patch) | |
tree | 4ee2c24e6721b2a919e02e89a409b81fda59a8e3 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
parent | 113fb54bcbf257447680aceea352d8beb7e1001e (diff) | |
download | bcm5719-llvm-0a4fa4ca93d2e029af9789be25a9753606f49a46.tar.gz bcm5719-llvm-0a4fa4ca93d2e029af9789be25a9753606f49a46.zip |
Fix typo Duncan noticed.
llvm-svn: 95322
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 201e899bd6a..cf342c793b9 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/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; |