mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Targets: Add InitializeNativeTargetAsmPrinter(), patch by Jan Sjodin, although
rewritten by me to not require updating all the target initialization routine names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109996 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2a80aca1a8
commit
b7a56ad907
@ -30,6 +30,13 @@ extern "C" {
|
||||
#define LLVM_ASM_PRINTER(TargetName) void LLVMInitialize##TargetName##AsmPrinter();
|
||||
#include "llvm/Config/AsmPrinters.def"
|
||||
|
||||
// FIXME: Workaround for unfortunate definition of LLVM_NATIVE_ARCH.
|
||||
#define LLVM_ASM_PRINTER(TargetName) \
|
||||
static inline void LLVMInitialize##TargetName##TargetAsmPrinter() { \
|
||||
LLVMInitialize##TargetName##AsmPrinter(); \
|
||||
}
|
||||
#include "llvm/Config/AsmPrinters.def"
|
||||
|
||||
// Declare all of the available assembly parser initialization functions.
|
||||
#define LLVM_ASM_PARSER(TargetName) void LLVMInitialize##TargetName##AsmParser();
|
||||
#include "llvm/Config/AsmParsers.def"
|
||||
@ -109,6 +116,23 @@ namespace llvm {
|
||||
return false;
|
||||
#undef DoInit
|
||||
#undef DoInit2
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
/// InitializeNativeTargetAsmPrinter - The main program should call
|
||||
/// this function to initialize the native target asm printer.
|
||||
inline bool InitializeNativeTargetAsmPrinter() {
|
||||
// If we have a native target, initialize the corresponding asm printer.
|
||||
#ifdef LLVM_NATIVE_ARCH
|
||||
#define DoInit2(TARG) \
|
||||
LLVMInitialize ## TARG ## AsmPrinter ();
|
||||
#define DoInit(T) DoInit2(T)
|
||||
DoInit(LLVM_NATIVE_ARCH);
|
||||
return false;
|
||||
#undef DoInit
|
||||
#undef DoInit2
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user