Displaying 2 results from an estimated 2 matches for "tag_compile_init".
2008 Apr 23
3
[LLVMdev] Compile units in debugging intrinsics / globals
...here are
no basic types in file2, so int is not defined), and fn2 appears to be in
compile unit "file3". My dwarf records are therefore incorrect, appearing
something like
TAG_compile_unit "file1"
TAG_subprogram "fn1" ...
...
TAG_base_type "int" ...
TAG_compile_init "file2"
TAG_variable "a" ...
TAG_compile_unit "file3"
TAG_subprogram "fn2" ...
...
When, in fact, these compile units "file2" and "file3" are bogus and
everything should be part of compile_unit "file1".
My question is:...
2008 Apr 24
0
[LLVMdev] Compile units in debugging intrinsics / globals
...ot defined), and fn2 appears to be in
> compile unit "file3". My dwarf records are therefore incorrect, appearing
> something like
>
> TAG_compile_unit "file1"
> TAG_subprogram "fn1" ...
> ...
> TAG_base_type "int" ...
>
> TAG_compile_init "file2"
> TAG_variable "a" ...
>
> TAG_compile_unit "file3"
> TAG_subprogram "fn2" ...
> ...
>
> When, in fact, these compile units "file2" and "file3" are bogus and
> everything should be part of compile_...