re PR debug/53135 (Duplicates cause size explosion (vta/dwarf))

PR debug/53135
* dwarf2out.c (value_format): Use block4 for dw_val_class_loc
when needed.

From-SVN: r192000
This commit is contained in:
Alexandre Oliva 2012-10-02 20:05:24 +00:00 committed by Alexandre Oliva
parent 75a5b7dd33
commit 58b88be9de
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2012-10-02 Alexandre Oliva <aoliva@redhat.com>
PR debug/53135
* dwarf2out.c (value_format): Use block4 for dw_val_class_loc
when needed.
2012-10-02 Alexandre Oliva <aoliva@redhat.com>
PR debug/54177

View File

@ -7491,6 +7491,8 @@ value_format (dw_attr_ref a)
return DW_FORM_block1;
case 2:
return DW_FORM_block2;
case 4:
return DW_FORM_block4;
default:
gcc_unreachable ();
}