mirror of git://gcc.gnu.org/git/gcc.git
rtti.c (involves_incomplete_p): Add fall through comment.
* rtti.c (involves_incomplete_p): Add fall through comment. * dwarf2out.c (loc_descriptor): Add fall through comment. (add_const_value_attribute): Likewise. From-SVN: r240624
This commit is contained in:
parent
a181f67231
commit
0b4b9552ee
|
|
@ -1,3 +1,8 @@
|
||||||
|
2016-09-29 Marek Polacek <polacek@redhat.com>
|
||||||
|
|
||||||
|
* dwarf2out.c (loc_descriptor): Add fall through comment.
|
||||||
|
(add_const_value_attribute): Likewise.
|
||||||
|
|
||||||
2016-09-29 Matthew Wahab <matthew.wahab@arm.com>
|
2016-09-29 Matthew Wahab <matthew.wahab@arm.com>
|
||||||
|
|
||||||
* config/arm/arm.md (*arm_movsi_insn): Replace "t2" arch attribute
|
* config/arm/arm.md (*arm_movsi_insn): Replace "t2" arch attribute
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
2016-09-29 Marek Polacek <polacek@redhat.com>
|
||||||
|
|
||||||
|
* rtti.c (involves_incomplete_p): Add fall through comment.
|
||||||
|
|
||||||
2016-09-28 Jakub Jelinek <jakub@redhat.com>
|
2016-09-28 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR c++/77467
|
PR c++/77467
|
||||||
|
|
|
||||||
|
|
@ -855,7 +855,7 @@ involves_incomplete_p (tree type)
|
||||||
case UNION_TYPE:
|
case UNION_TYPE:
|
||||||
if (!COMPLETE_TYPE_P (type))
|
if (!COMPLETE_TYPE_P (type))
|
||||||
return true;
|
return true;
|
||||||
|
/* Fall through. */
|
||||||
default:
|
default:
|
||||||
/* All other types do not involve incomplete class types. */
|
/* All other types do not involve incomplete class types. */
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
|
|
@ -14554,6 +14554,7 @@ loc_descriptor (rtx rtl, machine_mode mode,
|
||||||
case SYMBOL_REF:
|
case SYMBOL_REF:
|
||||||
if (!const_ok_for_output (rtl))
|
if (!const_ok_for_output (rtl))
|
||||||
break;
|
break;
|
||||||
|
/* FALLTHROUGH */
|
||||||
case LABEL_REF:
|
case LABEL_REF:
|
||||||
if (mode != VOIDmode && GET_MODE_SIZE (mode) == DWARF2_ADDR_SIZE
|
if (mode != VOIDmode && GET_MODE_SIZE (mode) == DWARF2_ADDR_SIZE
|
||||||
&& (dwarf_version >= 4 || !dwarf_strict))
|
&& (dwarf_version >= 4 || !dwarf_strict))
|
||||||
|
|
@ -17201,6 +17202,7 @@ add_const_value_attribute (dw_die_ref die, rtx rtl)
|
||||||
case SYMBOL_REF:
|
case SYMBOL_REF:
|
||||||
if (!const_ok_for_output (rtl))
|
if (!const_ok_for_output (rtl))
|
||||||
return false;
|
return false;
|
||||||
|
/* FALLTHROUGH */
|
||||||
case LABEL_REF:
|
case LABEL_REF:
|
||||||
if (dwarf_version >= 4 || !dwarf_strict)
|
if (dwarf_version >= 4 || !dwarf_strict)
|
||||||
goto rtl_addr;
|
goto rtl_addr;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue