projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17be679
)
Fix the TARGET_HAS_JIT settings. Sparc doesn't, x86_64 does, ARM doesn't.
author
Reid Spencer
<rspencer@reidspencer.com>
Sun, 21 Jan 2007 06:41:11 +0000
(06:41 +0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Sun, 21 Jan 2007 06:41:11 +0000
(06:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33421
91177308
-0d34-0410-b5e6-
96231b3b80d8
autoconf/configure.ac
patch
|
blob
|
history
diff --git
a/autoconf/configure.ac
b/autoconf/configure.ac
index 77e9f2e612edfb630693e08082c11ec7fa31608b..ea67fea9fbc80525f1d2870377851cc8ae588628 100644
(file)
--- a/
autoconf/configure.ac
+++ b/
autoconf/configure.ac
@@
-294,12
+294,12
@@
then
else
case "$llvm_cv_target_arch" in
x86) AC_SUBST(TARGET_HAS_JIT,1) ;;
- Sparc) AC_SUBST(TARGET_HAS_JIT,
1
) ;;
+ Sparc) AC_SUBST(TARGET_HAS_JIT,
0
) ;;
PowerPC) AC_SUBST(TARGET_HAS_JIT,1) ;;
- x86_64) AC_SUBST(TARGET_HAS_JIT,
0
) ;;
+ x86_64) AC_SUBST(TARGET_HAS_JIT,
1
) ;;
Alpha) AC_SUBST(TARGET_HAS_JIT,1) ;;
IA64) AC_SUBST(TARGET_HAS_JIT,0) ;;
- ARM) AC_SUBST(TARGET_HAS_JIT,
1
) ;;
+ ARM) AC_SUBST(TARGET_HAS_JIT,
0
) ;;
*) AC_SUBST(TARGET_HAS_JIT,0) ;;
esac
fi