forked from OSchip/llvm-project
parent
d83984f623
commit
135de90eec
|
@ -32,7 +32,8 @@ typedef struct LLVMOpaqueTargetData *LLVMTargetDataRef;
|
|||
typedef struct LLVMStructLayout *LLVMStructLayoutRef;
|
||||
|
||||
/* Declare all of the target-initialization functions that are available. */
|
||||
#define LLVM_TARGET(TargetName) void LLVMInitialize##TargetName##TargetInfo(void);
|
||||
#define LLVM_TARGET(TargetName) \
|
||||
void LLVMInitialize##TargetName##TargetInfo(void);
|
||||
#include "llvm/Config/Targets.def"
|
||||
#undef LLVM_TARGET /* Explicit undef to make SWIG happier */
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ lto_module_is_object_file_in_memory(const void* mem, size_t length);
|
|||
*/
|
||||
extern bool
|
||||
lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
|
||||
const char* target_triple_prefix);
|
||||
const char* target_triple_prefix);
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue