aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-07-22 18:28:17 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-07-22 18:28:17 +0000
commit033b09329a9757de6739616ab3b2b9ede3d3a14b (patch)
tree2c66a98a31784391fe431ac4a122ef763d05a2b4
parent35611c3a6bcb7cf143892d77d4c37a89868b8e62 (diff)
turn off DISABLE_LLC_DIFFS for x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7230 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 0bd1f953bf..a987d4ac1f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,7 +37,9 @@ dnl We will use the build machine information to set some variables.
dnl
case $build in
*i*86*) AC_SUBST(OS,[Linux])
- AC_SUBST(DISABLE_LLC_DIFFS,[[DISABLE_LLC_DIFFS:=1]])
+ dnl Turned off DISABLE_LLC_DIFFS now that LLC/x86 is
+ dnl viable for almost all our test cases.
+ dnl AC_SUBST(DISABLE_LLC_DIFFS,[[DISABLE_LLC_DIFFS:=1]])
AC_SUBST(LLVMGCCDIR,[/home/vadve/lattner/local/x86/llvm-gcc/])
;;