[llvm] r320213 - [X86][Mips] Remove unused method declaration from the X86 and Mips AsmPrinters.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 8 15:30:03 PST 2017
Author: ctopper
Date: Fri Dec 8 15:30:03 2017
New Revision: 320213
URL: http://llvm.org/viewvc/llvm-project?rev=320213&view=rev
Log:
[X86][Mips] Remove unused method declaration from the X86 and Mips AsmPrinters.
Both had a declaration of EmitXRayTable, but there is no method defined in either with that name. There is a emitXRayTable in the base class with a lower case 'e' and they both call that.
Modified:
llvm/trunk/lib/Target/Mips/MipsAsmPrinter.h
llvm/trunk/lib/Target/X86/X86AsmPrinter.h
Modified: llvm/trunk/lib/Target/Mips/MipsAsmPrinter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsAsmPrinter.h?rev=320213&r1=320212&r2=320213&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsAsmPrinter.h (original)
+++ llvm/trunk/lib/Target/Mips/MipsAsmPrinter.h Fri Dec 8 15:30:03 2017
@@ -54,9 +54,6 @@ public:
void LowerPATCHABLE_FUNCTION_ENTER(const MachineInstr &MI);
void LowerPATCHABLE_FUNCTION_EXIT(const MachineInstr &MI);
void LowerPATCHABLE_TAIL_CALL(const MachineInstr &MI);
- // Helper function that emits the XRay sleds we've collected for a particular
- // function.
- void EmitXRayTable();
private:
/// MCP - Keep a pointer to constantpool entries of the current
Modified: llvm/trunk/lib/Target/X86/X86AsmPrinter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86AsmPrinter.h?rev=320213&r1=320212&r2=320213&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86AsmPrinter.h (original)
+++ llvm/trunk/lib/Target/X86/X86AsmPrinter.h Fri Dec 8 15:30:03 2017
@@ -97,10 +97,6 @@ class LLVM_LIBRARY_VISIBILITY X86AsmPrin
void LowerFENTRY_CALL(const MachineInstr &MI, X86MCInstLower &MCIL);
- // Helper function that emits the XRay sleds we've collected for a particular
- // function.
- void EmitXRayTable();
-
// Choose between emitting .seh_ directives and .cv_fpo_ directives.
void EmitSEHInstruction(const MachineInstr *MI);
More information about the llvm-commits
mailing list