Home | History | Annotate | Download | only in Sema

Lines Matching refs:Unsigned

26   unsigned : -2;  // expected-error {{anonymous bit-field has negative width (-2)}}
33 struct b {unsigned x : 2;} x;
37 struct {unsigned x : 2;} x2;
48 unsigned bitX : 4;
49 unsigned bitY : 4;
50 unsigned var;
62 typedef unsigned Unsigned;
65 struct Test5 { unsigned n : 2; } t5;
66 // Bitfield is unsigned
73 typedef __typeof__(+(t5.n += 0)) Signed; // is a non-bit-field lvalue of type unsigned.
79 typedef __typeof__(+(t5.n++)) Unsigned; // Post-increment is underspecified, but seems to
80 typedef __typeof__(+(t5.n--)) Unsigned; // also act like compound-assignment.