diff options
author | Craig Topper <craig.topper@intel.com> | 2017-12-08 23:30:03 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2017-12-08 23:30:03 +0000 |
commit | e29f50da4dacf15faa5c306c4196679b95bdb0bc (patch) | |
tree | 4a4247bea22ca09f38682ebd6695cf8297f2e57d | |
parent | 354abec3e6b6132c9456de39951e8de0632771cc (diff) | |
download | bcm5719-llvm-e29f50da4dacf15faa5c306c4196679b95bdb0bc.tar.gz bcm5719-llvm-e29f50da4dacf15faa5c306c4196679b95bdb0bc.zip |
[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.
llvm-svn: 320213
-rw-r--r-- | llvm/lib/Target/Mips/MipsAsmPrinter.h | 3 | ||||
-rw-r--r-- | llvm/lib/Target/X86/X86AsmPrinter.h | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Target/Mips/MipsAsmPrinter.h b/llvm/lib/Target/Mips/MipsAsmPrinter.h index c53d80e4b0f..999b6f896ba 100644 --- a/llvm/lib/Target/Mips/MipsAsmPrinter.h +++ b/llvm/lib/Target/Mips/MipsAsmPrinter.h @@ -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 diff --git a/llvm/lib/Target/X86/X86AsmPrinter.h b/llvm/lib/Target/X86/X86AsmPrinter.h index 08d77345179..7e70789ac82 100644 --- a/llvm/lib/Target/X86/X86AsmPrinter.h +++ b/llvm/lib/Target/X86/X86AsmPrinter.h @@ -97,10 +97,6 @@ class LLVM_LIBRARY_VISIBILITY X86AsmPrinter : public AsmPrinter { 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); |