Displaying 2 results from an estimated 2 matches for "dw_lang_lo_user".
Did you mean:
dw_lang_hi_user
2011 Feb 23
3
[LLVMdev] DWARF DW_AT_language in LLVM
Is there any good reason for using DW_FORM_data1 for the DW_AT_language
attribute of DW_TAG_compile_unit? This prevents using language codes in
the DW_LANG_lo_user=0x8000 to DW_LANG_hi_user=0xffff range.
I think the obvious change to use DW_FORM_data2 in line 1897 of
lib/CodeGen/AsmPrinter/DwarfDebug.cpp should fix it. Or, if there are
binary compatibility issues, the abbrev form could be chosen
conditionally. Are there?
Thanks
-Peter S. Housel- housel at...
2011 Feb 23
0
[LLVMdev] DWARF DW_AT_language in LLVM
Peter,
On Feb 23, 2011, at 1:32 PM, Peter Housel wrote:
> Is there any good reason for using DW_FORM_data1 for the DW_AT_language
> attribute of DW_TAG_compile_unit? This prevents using language codes in
> the DW_LANG_lo_user=0x8000 to DW_LANG_hi_user=0xffff range.
>
> I think the obvious change to use DW_FORM_data2 in line 1897 of
> lib/CodeGen/AsmPrinter/DwarfDebug.cpp should fix it. Or, if there are
> binary compatibility issues, the abbrev form could be chosen
> conditionally. Are there?
I do not se...