From 042b79625f315da6378d06b5480b15894d6b06b1 Mon Sep 17 00:00:00 2001 From: Akira Hatanaka Date: Thu, 14 Mar 2013 19:09:52 +0000 Subject: [PATCH] [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 --- lib/Target/Mips/MipsSEISelLowering.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/Target/Mips/MipsSEISelLowering.cpp b/lib/Target/Mips/MipsSEISelLowering.cpp index 7e4458e16d3..287e2ede0ec 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;