diff mbox series

[PULL,34/54] configure: Remove obsolete check for Clang < 3.2

Message ID 1544628195-37728-35-git-send-email-pbonzini@redhat.com (mailing list archive)
State New, archived
Headers show
Series [PULL,01/54] accel: Improve selection of the default accelerator | expand

Commit Message

Paolo Bonzini Dec. 12, 2018, 3:22 p.m. UTC
From: Thomas Huth <thuth@redhat.com>

Since we have got a check for Clang >= 3.4 now, we do not need to
check for older Clang versions in the configure test for 128-bit ints
anymore.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <1543937577-28256-3-git-send-email-thuth@redhat.com>
---
 configure | 5 -----
 1 file changed, 5 deletions(-)
diff mbox series

Patch

diff --git a/configure b/configure
index 51150b1..3e401b7 100755
--- a/configure
+++ b/configure
@@ -5145,11 +5145,6 @@  fi
 
 int128=no
 cat > $TMPC << EOF
-#if defined(__clang_major__) && defined(__clang_minor__)
-# if ((__clang_major__ < 3) || (__clang_major__ == 3) && (__clang_minor__ < 2))
-#  error __int128_t does not work in CLANG before 3.2
-# endif
-#endif
 __int128_t a;
 __uint128_t b;
 int main (void) {