Define UDWtype for longlong.h inclusion in wide-int.cc

2014-05-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

	* wide-int.cc (UTItype): Define.
 	(UDWtype): Define for appropriate W_TYPE_SIZE.

From-SVN: r210215
This commit is contained in:
Ramana Radhakrishnan 2014-05-08 14:23:11 +00:00 committed by Ramana Radhakrishnan
parent 421bf78009
commit ca40fb286e
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2014-05-08 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
* wide-int.cc (UTItype): Define.
(UDWtype): Define for appropriate W_TYPE_SIZE.
2014-05-08 Marc Glisse <marc.glisse@inria.fr>
PR tree-optimization/59100

View File

@ -34,6 +34,12 @@ 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