diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-13 20:08:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-13 20:08:00 +0000 |
commit | 05af2616d0df19638e799d3e7afadea26d96a4ba (patch) | |
tree | 0b4164b49f9e83b80011a87da298b77e0c3ba7f0 /lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp | |
parent | f806c23a9a297e0b6d19d82ed23c6c5921d6ecd9 (diff) |
make tblgen produce a function that returns the name for a physreg.
Nothing is using this info yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81707 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp')
-rw-r--r-- | lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp index bdb44efa2e..5fe9b2bbf4 100644 --- a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp +++ b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp @@ -80,6 +80,8 @@ namespace { void emitFunctionEnd(MachineFunction &MF); void printInstruction(const MachineInstr *MI); // autogenerated. + const char *getRegisterName(unsigned RegNo) const; + void printMachineInstruction(const MachineInstr *MI); bool runOnMachineFunction(MachineFunction &F); bool doInitialization(Module &M); |