From 3f28a0320537b64a56f5ca7f1629bd977322cb63 Mon Sep 17 00:00:00 2001 From: pinskia Date: Tue, 31 Aug 2004 00:29:04 +0000 Subject: 2004-08-30 Andrew Pinski PR rtl-opt/13987 * config.host (use_long_long_for_widest_fast_int): New, default is off. (ia64-*-hpux*): Enable use_long_long_for_widest_fast_int. * configure.ac: If use_long_long_for_widest_fast_int, then define USE_LONG_LONG_FOR_WIDEST_FAST_INT. * configure: Regenerate. * config.in: Regenerate. * hwint.h (HOST_WIDEST_FAST_INT, HOST_BITS_PER_WIDEST_FAST_INT): New: widest integer type supported efficiently in hardware for the host. * sbitmap.h (SBITMAP_ELT_BITS): Define based on HOST_BITS_PER_WIDEST_FAST_INT. (SBITMAP_ELT_TYPE): Define based on HOST_WIDEST_FAST_INT. * hard-reg-set.h (HARD_REG_ELT_TYPE): Define based on HOST_WIDEST_FAST_INT instead of HOST_WIDE_INT. (HARD_REG_SET_LONGS): Likewise. (UHOST_BITS_PER_WIDE_INT): Likewise. Change the checks for the fast cases to be based on HOST_BITS_PER_WIDES_FAST_INT instead of HOST_BITS_PER_WIDE_INT. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86816 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config.host | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gcc/config.host') diff --git a/gcc/config.host b/gcc/config.host index 67a067c169f..fa7963062bf 100644 --- a/gcc/config.host +++ b/gcc/config.host @@ -52,6 +52,10 @@ # # host_can_use_collect2 Set to yes normally; to no if the host cannot # link or otherwise use collect2 +# use_long_long_for_widest_fast_int Set this to 'yes' if 'long long' +# (or '__int64') is wider than 'long' but still +# efficeiently supported by the host hardware. +# Only affects compile speed. Default is 'no'. # When setting any of these variables, check to see if a corresponding # variable is present in config.build; if so, you will likely want to @@ -66,6 +70,7 @@ host_extra_objs= host_extra_gcc_objs= out_host_hook_obj=host-default.o host_can_use_collect2=yes +use_long_long_for_widest_fast_int=no # Unsupported hosts list. Generally, only include hosts known to fail here, # since we allow hosts not listed to be supported generically. @@ -172,4 +177,7 @@ case ${host} in out_host_hook_obj=host-linux.o host_xmake_file=x-linux ;; + ia64-*-hpux*) + use_long_long_for_widest_fast_int=yes + ;; esac -- cgit v1.2.1