[PATCH] D16246: [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 15:48:02 PST 2016


kbsmith1 created this revision.
kbsmith1 added a reviewer: rnk.
kbsmith1 added a subscriber: llvm-commits.

I noticed that a paramter name got changed in the implementation of isCalleePop,
but didn't get changed in the header.  This simply fixes the header to match the
body change.

http://reviews.llvm.org/D16246

Files:
  X86ISelLowering.h

Index: X86ISelLowering.h
===================================================================
--- X86ISelLowering.h
+++ X86ISelLowering.h
@@ -610,7 +610,7 @@
     /// 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);
 
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16246.45045.patch
Type: text/x-patch
Size: 491 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160115/ef4ab2dd/attachment.bin>


More information about the llvm-commits mailing list