aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-11-28 19:52:20 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-11-28 19:52:20 +0000
commit3655de6873dfe68de050bb91a517a712246273f2 (patch)
tree022b4d33a36b032dbd32c6554806e289ce05220e /include/llvm
parent7fc4a94bdd5fb2933fecf27ca0cf377e1dc70cb0 (diff)
downloadexternal_llvm-3655de6873dfe68de050bb91a517a712246273f2.zip
external_llvm-3655de6873dfe68de050bb91a517a712246273f2.tar.gz
external_llvm-3655de6873dfe68de050bb91a517a712246273f2.tar.bz2
Add per-target support for asm translation in the cbe
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Target/TargetAsmInfo.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h
index f4b755c..2c695e9 100644
--- a/include/llvm/Target/TargetAsmInfo.h
+++ b/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;
+ }
};
}