diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-08-12 01:50:50 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-08-12 01:50:50 +0000 |
commit | b43b09eef54ebb99079c6541f1b14ae1a2ef7017 (patch) | |
tree | 4f6b70a0845950b4f30da7de3c800f054cf01215 /include/llvm/Config | |
parent | 4362c6225ede377e05a8f3da7072a0a836e5da0b (diff) | |
download | external_llvm-b43b09eef54ebb99079c6541f1b14ae1a2ef7017.zip external_llvm-b43b09eef54ebb99079c6541f1b14ae1a2ef7017.tar.gz external_llvm-b43b09eef54ebb99079c6541f1b14ae1a2ef7017.tar.bz2 |
include/llvm/Config/llvm-config.h: Reorder and reword to follow (generated) config.h.in.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137413 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Config')
-rw-r--r-- | include/llvm/Config/llvm-config.h.cmake | 14 | ||||
-rw-r--r-- | include/llvm/Config/llvm-config.h.in | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/include/llvm/Config/llvm-config.h.cmake b/include/llvm/Config/llvm-config.h.cmake index 6a6ea99..50ae267 100644 --- a/include/llvm/Config/llvm-config.h.cmake +++ b/include/llvm/Config/llvm-config.h.cmake @@ -52,21 +52,21 @@ /* LLVM architecture name for the native architecture, if available */ #cmakedefine LLVM_NATIVE_ARCH ${LLVM_NATIVE_ARCH} +/* LLVM name for the native AsmParser init function, if available */ +#cmakedefine LLVM_NATIVE_ASMPARSER LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser + +/* LLVM name for the native AsmPrinter init function, if available */ +#cmakedefine LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter + /* LLVM name for the native Target init function, if available */ #cmakedefine LLVM_NATIVE_TARGET LLVMInitialize${LLVM_NATIVE_ARCH}Target /* LLVM name for the native TargetInfo init function, if available */ #cmakedefine LLVM_NATIVE_TARGETINFO LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo -/* LLVM name for the native TargetMC init function, if available */ +/* LLVM name for the native target MC init function, if available */ #cmakedefine LLVM_NATIVE_TARGETMC LLVMInitialize${LLVM_NATIVE_ARCH}TargetMC -/* LLVM name for the native AsmPrinter init function, if available */ -#cmakedefine LLVM_NATIVE_ASMPRINTER LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter - -/* LLVM name for the native AsmPrinter init function, if available */ -#cmakedefine LLVM_NATIVE_ASMPARSER LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser - /* Define if this is Unixish platform */ #cmakedefine LLVM_ON_UNIX ${LLVM_ON_UNIX} diff --git a/include/llvm/Config/llvm-config.h.in b/include/llvm/Config/llvm-config.h.in index 25d1302..bc9e8ca 100644 --- a/include/llvm/Config/llvm-config.h.in +++ b/include/llvm/Config/llvm-config.h.in @@ -52,21 +52,21 @@ /* LLVM architecture name for the native architecture, if available */ #undef LLVM_NATIVE_ARCH +/* LLVM name for the native AsmParser init function, if available */ +#undef LLVM_NATIVE_ASMPARSER + +/* LLVM name for the native AsmPrinter init function, if available */ +#undef LLVM_NATIVE_ASMPRINTER + /* LLVM name for the native Target init function, if available */ #undef LLVM_NATIVE_TARGET /* LLVM name for the native TargetInfo init function, if available */ #undef LLVM_NATIVE_TARGETINFO -/* LLVM name for the native TargetMC init function, if available */ +/* LLVM name for the native target MC init function, if available */ #undef LLVM_NATIVE_TARGETMC -/* LLVM name for the native AsmPrinter init function, if available */ -#undef LLVM_NATIVE_ASMPRINTER - -/* LLVM name for the native AsmPrinter init function, if available */ -#undef LLVM_NATIVE_ASMPARSER - /* Define if this is Unixish platform */ #undef LLVM_ON_UNIX |