From 033b09329a9757de6739616ab3b2b9ede3d3a14b Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Tue, 22 Jul 2003 18:28:17 +0000 Subject: [PATCH] turn off DISABLE_LLC_DIFFS for x86. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7230 91177308-0d34-0410-b5e6-96231b3b80d8 --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0bd1f953bff..a987d4ac1fb 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/]) ;;