[llvm-commits] CVS: llvm/include/llvm/Target/TargetAsmInfo.h
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Tue Nov 28 11:52:24 PST 2006
Changes in directory llvm/include/llvm/Target:
TargetAsmInfo.h updated: 1.12 -> 1.13
---
Log message:
Add per-target support for asm translation in the cbe
---
Diffs of the changes: (+7 -0)
TargetAsmInfo.h | 7 +++++++
1 files changed, 7 insertions(+)
Index: llvm/include/llvm/Target/TargetAsmInfo.h
diff -u llvm/include/llvm/Target/TargetAsmInfo.h:1.12 llvm/include/llvm/Target/TargetAsmInfo.h:1.13
--- llvm/include/llvm/Target/TargetAsmInfo.h:1.12 Mon Oct 30 16:46:49 2006
+++ llvm/include/llvm/Target/TargetAsmInfo.h Tue Nov 28 13:51:57 2006
@@ -275,6 +275,10 @@
///
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 @@
const char *getDwarfMacInfoSection() const {
return DwarfMacInfoSection;
}
+ const char** getAsmCBE() const {
+ return AsmTransCBE;
+ }
};
}
More information about the llvm-commits
mailing list