diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 78fb278..51e986a 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -2814,7 +2814,7 @@ make_bit_field_ref (tree inner, tree type, int bitsize, int bitpos, tree result = build (BIT_FIELD_REF, type, inner, size_int (bitsize), bitsize_int (bitpos)); - TREE_UNSIGNED (result) = unsignedp; + BIT_FIELD_REF_UNSIGNED (result) = unsignedp; return result; } |