diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2013-03-14 19:09:52 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2013-03-14 19:09:52 +0000 |
commit | 042b79625f315da6378d06b5480b15894d6b06b1 (patch) | |
tree | 707ec4eb57c16fa600f908543709c201926f27a3 /lib | |
parent | cec50e6da221edeef922a5d5f85081ba66b08dab (diff) |
[mips] Fix filename in comment and delete unnecessary lines of code.
No functionality changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177104 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/Mips/MipsSEISelLowering.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Target/Mips/MipsSEISelLowering.cpp b/lib/Target/Mips/MipsSEISelLowering.cpp index 7e4458e16d..287e2ede0e 100644 --- a/lib/Target/Mips/MipsSEISelLowering.cpp +++ b/lib/Target/Mips/MipsSEISelLowering.cpp @@ -1,4 +1,4 @@ -//===-- MipsSEISelLowering.h - MipsSE DAG Lowering Interface ----*- C++ -*-===// +//===-- MipsSEISelLowering.cpp - MipsSE DAG Lowering Interface --*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -107,10 +107,6 @@ isEligibleForTailCallOptimization(const MipsCC &MipsCCInfo, if (!EnableMipsTailCalls) return false; - // No tail call optimization for mips16. - if (Subtarget->inMips16Mode()) - return false; - // Return false if either the callee or caller has a byval argument. if (MipsCCInfo.hasByValArg() || FI.hasByvalArg()) return false; |