Displaying 2 results from an estimated 2 matches for "createptrtomembertype".
2012 Jun 28
3
[LLVMdev] llvm dwarf emission
...facilities represented in modern DWARF, and to store that in
the bitcode. In LLVM we would have a DwarfOpts that specifies the major
version of DWARF we're targetting and some additional compatibility flags
to work around debugger deficiencies.
So for example, DIBuilder's interface has no createPtrToMemberType() which
is odd since it's been there since DWARF 2, but gcc didn't emit that until
very recently so neither does llvm. Instead clang lowers it to a difference
of two other pointer types, which effectively throws away information. My
plan is to always emit the bitcode with the DWARF 4 repres...
2012 Jun 28
0
[LLVMdev] llvm dwarf emission
...Ciao, Duncan.
and to store that in the bitcode. In
> LLVM we would have a DwarfOpts that specifies the major version of DWARF we're
> targetting and some additional compatibility flags to work around debugger
> deficiencies.
>
> So for example, DIBuilder's interface has no createPtrToMemberType() which is
> odd since it's been there since DWARF 2, but gcc didn't emit that until very
> recently so neither does llvm. Instead clang lowers it to a difference of two
> other pointer types, which effectively throws away information. My plan is to
> always emit the bitcode wit...