1
0
mirror of https://github.com/golang/go synced 2024-11-21 15:24:45 -07:00

Use future official DWARF language code for Go.

http://dwarfstd.org/ShowIssue.php?issue=101014.1&type=open

Informally accepted for future DWARF 5.

R=lvd
CC=golang-dev, rsc
https://golang.org/cl/2881042
This commit is contained in:
Ian Lance Taylor 2010-11-04 08:45:25 -07:00
parent 25b1e83262
commit d2d650bdc9

View File

@ -379,9 +379,10 @@ enum
DW_LANG_D = 0x0013,
// Dwarf4
DW_LANG_Python = 0x0014,
// Dwarf5
DW_LANG_Go = 0x0016,
DW_LANG_lo_user = 0x8000,
DW_LANG_Go = 0x8015, // TODO(lvd) Temporary
DW_LANG_hi_user = 0xffff,
};