OSDN Git Service

configure: remove dead int128 test
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 23 Mar 2022 11:46:53 +0000 (12:46 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 23 Mar 2022 13:16:36 +0000 (14:16 +0100)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
configure

index 6d9cb23..7c08c18 100755 (executable)
--- a/configure
+++ b/configure
@@ -2464,24 +2464,6 @@ fi
 fi
 
 ########################################
-# check if __[u]int128_t is usable.
-
-int128=no
-cat > $TMPC << EOF
-__int128_t a;
-__uint128_t b;
-int main (void) {
-  a = a + b;
-  b = a * b;
-  a = a * a;
-  return 0;
-}
-EOF
-if compile_prog "" "" ; then
-    int128=yes
-fi
-
-########################################
 # check if ccache is interfering with
 # semantic analysis of macros