diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2011-07-22 22:21:47 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2011-07-22 22:21:47 +0000 |
commit | 1608637bbd327fe1fbc82e0e0639224b124de720 (patch) | |
tree | 93bc95b51661bb11505702e64522c6f01ca77d4a /include/llvm/Config | |
parent | 6ab4e3dd2375c3dcee06dde37437dc0c5a99aa24 (diff) | |
download | external_llvm-1608637bbd327fe1fbc82e0e0639224b124de720.zip external_llvm-1608637bbd327fe1fbc82e0e0639224b124de720.tar.gz external_llvm-1608637bbd327fe1fbc82e0e0639224b124de720.tar.bz2 |
Teach cmake configured headers about LLVM_NATIVE_TARGETMC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135820 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Config')
-rw-r--r-- | include/llvm/Config/config.h.cmake | 7 | ||||
-rw-r--r-- | include/llvm/Config/llvm-config.h.cmake | 7 |
2 files changed, 4 insertions, 10 deletions
diff --git a/include/llvm/Config/config.h.cmake b/include/llvm/Config/config.h.cmake index 82ebc56..1cf99d4 100644 --- a/include/llvm/Config/config.h.cmake +++ b/include/llvm/Config/config.h.cmake @@ -557,11 +557,8 @@ /* LLVM name for the native TargetInfo init function, if available */ #cmakedefine LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo -/* LLVM name for the native MCAsmInfo init function, if available */ -#cmakedefine LLVM_NATIVE_MCASMINFO LLVMInitialize${LLVM_NATIVE_ARCH}MCAsmInfo - -/* LLVM name for the native MCCodeGenInfo init function, if available */ -#cmakedefine LLVM_NATIVE_MCCODEGENINFO LLVMInitialize${LLVM_NATIVE_ARCH}MCCodeGenInfo +/* LLVM name for the native TargetMC init function, if available */ +#cmakedefine LLVM_NATIVE_TARGETMC LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo /* Define if this is Unixish platform */ #cmakedefine LLVM_ON_UNIX ${LLVM_ON_UNIX} diff --git a/include/llvm/Config/llvm-config.h.cmake b/include/llvm/Config/llvm-config.h.cmake index 63d2b3f..78b7414 100644 --- a/include/llvm/Config/llvm-config.h.cmake +++ b/include/llvm/Config/llvm-config.h.cmake @@ -58,11 +58,8 @@ /* LLVM name for the native TargetInfo init function, if available */ #cmakedefine LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo -/* LLVM name for the native MCAsmInfo init function, if available */ -#cmakedefine LLVM_NATIVE_MCASMINFO LLVMInitialize${LLVM_NATIVE_ARCH}MCAsmInfo - -/* LLVM name for the native MCCodeGenInfo init function, if available */ -#cmakedefine LLVM_NATIVE_MCCODEGENINFO LLVMInitialize${LLVM_NATIVE_ARCH}MCCodeGenInfo +/* LLVM name for the native TargetMC init function, if available */ +#cmakedefine LLVM_NATIVE_TARGETMC LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo /* LLVM name for the native AsmPrinter init function, if available */ #cmakedefine LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter |