remove some horrible MAI hooks which fortunately turn out to be always empty.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81946 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2009-09-15 23:11:32 +00:00
parent f60d3eb186
commit bfd1e50c4f
3 changed files with 3 additions and 50 deletions

View File

@@ -84,18 +84,6 @@ namespace llvm {
/// is "l" on Darwin, currently used for some ObjC metadata.
const char *LinkerPrivateGlobalPrefix; // Defaults to ""
/// GlobalVarAddrPrefix/Suffix - If these are nonempty, these strings
/// will enclose any GlobalVariable (that isn't a function)
///
const char *GlobalVarAddrPrefix; // Defaults to ""
const char *GlobalVarAddrSuffix; // Defaults to ""
/// FunctionAddrPrefix/Suffix - If these are nonempty, these strings
/// will enclose any GlobalVariable that points to a function.
///
const char *FunctionAddrPrefix; // Defaults to ""
const char *FunctionAddrSuffix; // Defaults to ""
/// PersonalityPrefix/Suffix - If these are nonempty, these strings will
/// enclose any personality function in the common frame section.
///
@@ -365,18 +353,6 @@ namespace llvm {
const char *getLinkerPrivateGlobalPrefix() const {
return LinkerPrivateGlobalPrefix;
}
const char *getGlobalVarAddrPrefix() const {
return GlobalVarAddrPrefix;
}
const char *getGlobalVarAddrSuffix() const {
return GlobalVarAddrSuffix;
}
const char *getFunctionAddrPrefix() const {
return FunctionAddrPrefix;
}
const char *getFunctionAddrSuffix() const {
return FunctionAddrSuffix;
}
const char *getPersonalityPrefix() const {
return PersonalityPrefix;
}