From c831a08fbf3eedd199ab9874bd4b24aedf458131 Mon Sep 17 00:00:00 2001 From: "Kevin B. Smith" Date: Sat, 16 Jan 2016 00:08:36 +0000 Subject: [PATCH] [X86]: Make param names in header and body match for isCalleePop. Differential Revision: http://reviews.llvm.org/D16246 llvm-svn: 257965 --- llvm/lib/Target/X86/X86ISelLowering.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/X86/X86ISelLowering.h b/llvm/lib/Target/X86/X86ISelLowering.h index 0ab786e08e02..f14073bc7161 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.h +++ b/llvm/lib/Target/X86/X86ISelLowering.h @@ -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); }