[llvm] r257965 - [X86]: Make param names in header and body match for isCalleePop.

Kevin B. Smith via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 15 16:08:36 PST 2016


Author: kbsmith1
Date: Fri Jan 15 18:08:36 2016
New Revision: 257965

URL: http://llvm.org/viewvc/llvm-project?rev=257965&view=rev
Log:
[X86]: Make param names in header and body match for isCalleePop.
Differential Revision: http://reviews.llvm.org/D16246

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.h

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.h?rev=257965&r1=257964&r2=257965&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.h (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.h Fri Jan 15 18:08:36 2016
@@ -610,7 +610,7 @@ namespace llvm {
     /// Determines whether the callee is required to pop its
     /// own arguments. Callee pop is necessary to support tail calls.
     bool isCalleePop(CallingConv::ID CallingConv,
-                     bool is64Bit, bool IsVarArg, bool TailCallOpt);
+                     bool is64Bit, bool IsVarArg, bool GuaranteeTCO);
 
   }
 




More information about the llvm-commits mailing list