From 2038f52525b3993fffbf33207287ab47d6a7fa58 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Mon, 4 Jun 2007 08:32:52 +0000 Subject: 2007-06-04 Paolo Bonzini Sync with gcc: 2007-05-30 Jakub Jelinek PR bootstrap/29382 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1. * configure: Rebuilt. --- configure | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 6e989c2..13425f3 100755 --- a/configure +++ b/configure @@ -11464,6 +11464,12 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ +#if (__GNUC__ < 3) \ + || (__GNUC__ == 3 && (__GNUC_MINOR__ < 3 \ + || (__GNUC_MINOR__ == 3 && __GNUC_PATCHLEVEL__ < 1))) +#error http://gcc.gnu.org/PR29382 +#endif + int main () { -- cgit v1.1