diff options
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAsmPrinter.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAsmPrinter.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.h b/llvm/lib/Target/ARM/ARMAsmPrinter.h index a4b37fa2331f6..f8ff047a1d068 100644 --- a/llvm/lib/Target/ARM/ARMAsmPrinter.h +++ b/llvm/lib/Target/ARM/ARMAsmPrinter.h @@ -84,21 +84,21 @@ public: void emitInlineAsmEnd(const MCSubtargetInfo &StartInfo, const MCSubtargetInfo *EndInfo) const override; - void EmitJumpTableAddrs(const MachineInstr *MI); - void EmitJumpTableInsts(const MachineInstr *MI); - void EmitJumpTableTBInst(const MachineInstr *MI, unsigned OffsetWidth); - void EmitInstruction(const MachineInstr *MI) override; + void emitJumpTableAddrs(const MachineInstr *MI); + void emitJumpTableInsts(const MachineInstr *MI); + void emitJumpTableTBInst(const MachineInstr *MI, unsigned OffsetWidth); + void emitInstruction(const MachineInstr *MI) override; bool runOnMachineFunction(MachineFunction &F) override; - void EmitConstantPool() override { + void emitConstantPool() override { // we emit constant pools customly! } - void EmitFunctionBodyEnd() override; - void EmitFunctionEntryLabel() override; - void EmitStartOfAsmFile(Module &M) override; - void EmitEndOfAsmFile(Module &M) override; - void EmitXXStructor(const DataLayout &DL, const Constant *CV) override; - void EmitGlobalVariable(const GlobalVariable *GV) override; + void emitFunctionBodyEnd() override; + void emitFunctionEntryLabel() override; + void emitStartOfAsmFile(Module &M) override; + void emitEndOfAsmFile(Module &M) override; + void emitXXStructor(const DataLayout &DL, const Constant *CV) override; + void emitGlobalVariable(const GlobalVariable *GV) override; MCSymbol *GetCPISymbol(unsigned CPID) const override; @@ -117,7 +117,7 @@ public: private: void EmitSled(const MachineInstr &MI, SledKind Kind); - // Helpers for EmitStartOfAsmFile() and EmitEndOfAsmFile() + // Helpers for emitStartOfAsmFile() and emitEndOfAsmFile() void emitAttributes(); // Generic helper used to emit e.g. ARMv5 mul pseudos @@ -150,7 +150,7 @@ private: public: /// EmitMachineConstantPoolValue - Print a machine constantpool value to /// the .s file. - void EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override; + void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override; }; } // end namespace llvm |