1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Gack. Actually use the correct variable name in setting the JIT support.

llvm-svn: 18240
This commit is contained in:
Reid Spencer 2004-11-25 07:28:19 +00:00
parent 6405f5e9b3
commit 7daa0ae9b4
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ if test ${enableval} = "no"
then
AC_SUBST(JIT,[[]])
else
case "$llvm_cv_target_architecture" in
case "$llvm_cv_target_arch" in
x86) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
Sparc) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
PowerPC) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;

2
configure vendored
View File

@ -2945,7 +2945,7 @@ then
JIT=
else
case "$llvm_cv_target_architecture" in
case "$llvm_cv_target_arch" in
x86) JIT=TARGET_HAS_JIT=1
;;
Sparc) JIT=TARGET_HAS_JIT=1