probinson added a comment.

In D70696#1765675 <https://reviews.llvm.org/D70696#1765675>, @yonghong-song 
wrote:

> It is just strange that gcc 7.3.1 (did not test, but maybe later gcc versions 
> as well) emits the debuginfo (encoded in dwarf)
>  even if the external variable is not used in the current compilation unit. 
> Not sure what is the rationale behind it.


If it were me, it would be because the declaration is available in the current 
CU, therefore if the debugger is stopped somewhere in the CU, the symbol should 
be available to the debugger.  Having the external declaration means you don't 
need to go rooting around in other CUs for the symbol.

This is just one of those trade-offs that producers and consumers make, 
regarding completeness of information versus bloat of unnecessary information.  
There is no "right" answer.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D70696/new/

https://reviews.llvm.org/D70696



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to