aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2018-12-04 13:05:44 +0100
committerThomas Huth <thuth@redhat.com>2018-12-12 08:37:52 +0100
commit40f87e2680a3fda6117a08db9106a01345806a66 (patch)
tree0e8b43c15c52fd66b952802a5ba1406ffb42ff4f /configure
parentefc6c070acabd92283f8786cc835684d09def12f (diff)
configure: Remove obsolete check for Clang < 3.2
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. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 0 insertions, 5 deletions
diff --git a/configure b/configure
index 7621c008a5..ca364f633c 100755
--- a/configure
+++ b/configure
@@ -5148,11 +5148,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) {