diff options
| author | Andrew Lenharth <andrewl@lenharth.org> | 2006-11-28 19:52:20 +0000 |
|---|---|---|
| committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-11-28 19:52:20 +0000 |
| commit | ff35b449a0b14b513d5ae44af5999b7315e3c05e (patch) | |
| tree | 3c77a9179afe4594beec9c3c62a54cb825e6f428 /llvm/include | |
| parent | 40182179b63d014427c9b5981214e33ce06c477e (diff) | |
| download | bcm5719-llvm-ff35b449a0b14b513d5ae44af5999b7315e3c05e.tar.gz bcm5719-llvm-ff35b449a0b14b513d5ae44af5999b7315e3c05e.zip | |
Add per-target support for asm translation in the cbe
llvm-svn: 31972
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/Target/TargetAsmInfo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/include/llvm/Target/TargetAsmInfo.h b/llvm/include/llvm/Target/TargetAsmInfo.h index f4b755c8a3a..2c695e9d73e 100644 --- a/llvm/include/llvm/Target/TargetAsmInfo.h +++ b/llvm/include/llvm/Target/TargetAsmInfo.h @@ -275,6 +275,10 @@ namespace llvm { /// const char *DwarfMacInfoSection; // Defaults to ".debug_macinfo". + //===--- CBE Asm Translation Table -----------------------------------===// + + const char** AsmTransCBE; // Defaults to empty + public: TargetAsmInfo(); virtual ~TargetAsmInfo(); @@ -457,6 +461,9 @@ namespace llvm { const char *getDwarfMacInfoSection() const { return DwarfMacInfoSection; } + const char** getAsmCBE() const { + return AsmTransCBE; + } }; } |

