From: Ramana Radhakrishnan Date: Fri, 9 May 2014 08:32:37 +0000 (+0000) Subject: Revert wide-int change. X-Git-Tag: releases/gcc-5.1.0~7678 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9db25c6a05578b77f219c789df54ba6f81bcf40d;p=thirdparty%2Fgcc.git Revert wide-int change. 2014-05-09 Ramana Radhakrishnan Revert: 2014-05-08 Ramana Radhakrishnan * wide-int.cc (UTItype): Define. (UDWtype): Define for appropriate W_TYPE_SIZE. From-SVN: r210263 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 879bd55a4f31..09bbce0681ac 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2014-05-09 Ramana Radhakrishnan + + Revert: + 2014-05-08 Ramana Radhakrishnan + + * wide-int.cc (UTItype): Define. + (UDWtype): Define for appropriate W_TYPE_SIZE. + 2014-05-09 Richard Biener * Makefile.in (GTFILES): Remove tree-ssa-propagate.c. diff --git a/gcc/wide-int.cc b/gcc/wide-int.cc index 3552e031b776..69a15bcd148b 100644 --- a/gcc/wide-int.cc +++ b/gcc/wide-int.cc @@ -34,12 +34,6 @@ typedef unsigned HOST_WIDE_INT UWtype; typedef unsigned int UQItype __attribute__ ((mode (QI))); typedef unsigned int USItype __attribute__ ((mode (SI))); typedef unsigned int UDItype __attribute__ ((mode (DI))); -typedef unsigned int UTItype __attribute__ ((mode (TI))); -#if W_TYPE_SIZE == 32 -# define UDWtype UDItype -#elif W_TYPE_SIZE == 64 -# define UDWtype UTItype -#endif #include "longlong.h" #endif