summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorJan Sjödin <jan_sjodin@yahoo.com>2011-03-09 18:36:40 +0000
committerJan Sjödin <jan_sjodin@yahoo.com>2011-03-09 18:36:40 +0000
commit7263d71cd9a8f7be649da6f1d1b6f6aa65755280 (patch)
tree99649c55b242754fe44a4da5b0a514deb5869bf7 /autoconf
parent01dff9646173fea0c38df4471f41272557ca831a (diff)
downloadllvm-7263d71cd9a8f7be649da6f1d1b6f6aa65755280.tar.gz
llvm-7263d71cd9a8f7be649da6f1d1b6f6aa65755280.tar.bz2
llvm-7263d71cd9a8f7be649da6f1d1b6f6aa65755280.tar.xz
Missing file from previous commmit (127341) for InitializeTargetAsmParser function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127345 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 13b1ad8503..5921fcd5e8 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -657,12 +657,15 @@ for a_target in $TARGETS_TO_BUILD; do
LLVM_NATIVE_TARGET="LLVMInitialize${LLVM_NATIVE_ARCH}Target"
LLVM_NATIVE_TARGETINFO="LLVMInitialize${LLVM_NATIVE_ARCH}TargetInfo"
LLVM_NATIVE_ASMPRINTER="LLVMInitialize${LLVM_NATIVE_ARCH}AsmPrinter"
+ LLVM_NATIVE_ASMPARSER="LLVMInitialize${LLVM_NATIVE_ARCH}AsmParser"
AC_DEFINE_UNQUOTED(LLVM_NATIVE_TARGET, $LLVM_NATIVE_TARGET,
[LLVM name for the native Target init function, if available])
AC_DEFINE_UNQUOTED(LLVM_NATIVE_TARGETINFO, $LLVM_NATIVE_TARGETINFO,
[LLVM name for the native TargetInfo init function, if available])
AC_DEFINE_UNQUOTED(LLVM_NATIVE_ASMPRINTER, $LLVM_NATIVE_ASMPRINTER,
[LLVM name for the native AsmPrinter init function, if available])
+ AC_DEFINE_UNQUOTED(LLVM_NATIVE_ASMPARSER, $LLVM_NATIVE_ASMPARSER,
+ [LLVM name for the native AsmParser init function, if available])
fi
done