mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
75a5b7dd33
commit
58b88be9de
|
|
@ -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>
|
2012-10-02 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
PR debug/54177
|
PR debug/54177
|
||||||
|
|
|
||||||
|
|
@ -7491,6 +7491,8 @@ value_format (dw_attr_ref a)
|
||||||
return DW_FORM_block1;
|
return DW_FORM_block1;
|
||||||
case 2:
|
case 2:
|
||||||
return DW_FORM_block2;
|
return DW_FORM_block2;
|
||||||
|
case 4:
|
||||||
|
return DW_FORM_block4;
|
||||||
default:
|
default:
|
||||||
gcc_unreachable ();
|
gcc_unreachable ();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue