From: jakub Date: Mon, 19 Apr 2010 19:37:14 +0000 (+0000) Subject: * dwarf2out.c (lower_bound_default): For DW_LANG_Python return X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=4415d923b7996627d15ea592b1141d6a08c1452d;p=pf3gnuchains%2Fgcc-fork.git * dwarf2out.c (lower_bound_default): For DW_LANG_Python return 0 for -gdwarf-4. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@158526 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6e2a0402ac9..f75e8015ef8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-04-19 Jakub Jelinek + + * dwarf2out.c (lower_bound_default): For DW_LANG_Python return + 0 for -gdwarf-4. + 2010-04-19 Vladimir Makarov * ira-color.c (allocno_reload_assign): Avoid accumulating diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 1768aeec665..ed5257d9ae2 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -16727,6 +16727,7 @@ lower_bound_default (void) return 1; case DW_LANG_UPC: case DW_LANG_D: + case DW_LANG_Python: return dwarf_version >= 4 ? 0 : -1; case DW_LANG_Ada95: case DW_LANG_Ada83: