Commit abbb9522 by Richard Kenner

(AT_lo_user, AT_hi_user): Fix defined values to be correct according

to final DWARF V1 spec.

From-SVN: r4187
parent 0b2187a9
...@@ -167,8 +167,8 @@ enum dwarf_attribute { ...@@ -167,8 +167,8 @@ enum dwarf_attribute {
AT_body_end = (0x8050|FORM_ADDR) AT_body_end = (0x8050|FORM_ADDR)
}; };
#define AT_lo_user 0x8000 /* implementation-defined range start */ #define AT_lo_user 0x2000 /* implementation-defined range start */
#define AT_hi_user 0xffff /* implementation-defined range end */ #define AT_hi_user 0x3ff0 /* implementation-defined range end */
/* Location atom names and codes. */ /* Location atom names and codes. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment