diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2013-06-25 07:23:19 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2013-06-25 07:23:19 +0000 |
commit | 33be0bec7e32a96c2cc05f5afeed7febf9b48a9c (patch) | |
tree | affb25251d2ed549aac1201c32a11b23ddf04483 /gcc/varasm.c | |
parent | 6122e82486235677e1308770961b0ecf83b0e675 (diff) | |
download | gcc-33be0bec7e32a96c2cc05f5afeed7febf9b48a9c.zip gcc-33be0bec7e32a96c2cc05f5afeed7febf9b48a9c.tar.gz gcc-33be0bec7e32a96c2cc05f5afeed7febf9b48a9c.tar.bz2 |
expr.c (expand_expr_real_1): Fix formatting glitches.
* expr.c (expand_expr_real_1) <ARRAY_REF>: Fix formatting glitches.
<BIT_FIELD_REF>: Remove trailing TAB.
* varasm.c (output_constructor_bitfield): Fix formatting glitch and
remove blank line.
From-SVN: r200389
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index c21a25f..8efd98e 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -4947,7 +4947,7 @@ output_constructor_bitfield (oc_local_state *local, unsigned int bit_offset) /* Bit position of this element from the start of a possibly ongoing outer byte buffer. */ HOST_WIDE_INT byte_relative_ebitpos - = bit_offset + constructor_relative_ebitpos; + = bit_offset + constructor_relative_ebitpos; /* From the start of a possibly ongoing outer byte buffer, offsets to the first bit of this element and to the first bit past the end of @@ -5131,7 +5131,6 @@ output_constructor (tree exp, unsigned HOST_WIDE_INT size, local.total_bytes = 0; local.byte_buffer_in_use = outer != NULL; local.byte = outer ? outer->byte : 0; - local.last_relative_index = -1; gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT); |