* wide-int.h (wi::int_traits <HOST_WIDE_INT>): Always define.

From-SVN: r210128
This commit is contained in:
Mike Stump 2014-05-06 23:50:35 +00:00 committed by Mike Stump
parent 895a5cc06c
commit ca66f89bfa
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2014-05-06 Mike Stump <mikestump@comcast.net>
* wide-int.h (wi::int_traits <HOST_WIDE_INT>): Always define.
2014-05-06 Joseph Myers <joseph@codesourcery.com>
* config/i386/sse.md (*mov<mode>_internal)

View File

@ -1442,7 +1442,6 @@ namespace wi
struct int_traits <unsigned int>
: public primitive_int_traits <unsigned int, false> {};
#if HOST_BITS_PER_INT != HOST_BITS_PER_WIDE_INT
template <>
struct int_traits <HOST_WIDE_INT>
: public primitive_int_traits <HOST_WIDE_INT, true> {};
@ -1450,7 +1449,6 @@ namespace wi
template <>
struct int_traits <unsigned HOST_WIDE_INT>
: public primitive_int_traits <unsigned HOST_WIDE_INT, false> {};
#endif
}
namespace wi