2016-12-08 Nathan Sidwell <nathan@acm.org>
PR c++/78550
* convert.c (convert_to_integer_1): Maybe fold conversions to
integral types with fewer bits than its mode.
testsuite/
PR c++/78550
* g++.dg/cpp1y/pr78550.C: New.
===================================================================
@@ -646,10 +646,11 @@ convert_to_integer_1 (tree type, tree ex
to TYPE. */
else if (TREE_CODE (type) == ENUMERAL_TYPE
|| outprec != GET_MODE_PRECISION (TYPE_MODE (type)))
- return build1 (NOP_EXPR, type,
- convert (lang_hooks.types.type_for_mode
- (TYPE_MODE (type), TYPE_UNSIGNED (type)),
- expr));
+ {
+ expr = convert (lang_hooks.types.type_for_mode
+ (TYPE_MODE (type), TYPE_UNSIGNED (type)), expr);
+ return maybe_fold_build1_loc (dofold, loc, NOP_EXPR, type, expr);
+ }
/* Here detect when we can distribute the truncation down past some
arithmetic. For example, if adding two longs and converting to an
===================================================================
@@ -0,0 +1,22 @@
+// { dg-do compile { target c++14 } }
+
+// PR 78550 ICE with initializer_list and bitfield member
+
+namespace std
+{
+ template <class T>
+ struct initializer_list
+ {
+ const T *a;
+ __SIZE_TYPE__ b;
+ constexpr initializer_list (const T *x, __SIZE_TYPE__ y) : a(x), b(y) { }
+ };
+}
+template <typename T>
+struct A {
+ A (std::initializer_list<T>);
+};
+struct B {
+ int k : 1;
+};
+A<B> a{{0}};