aprantl added inline comments.

================
Comment at: include/clang/AST/DeclCXX.h:2931
+    lang_cxx_11 = /* DW_LANG_C_plus_plus_11 */ 0x001a,
+    lang_cxx_14 = /* DW_LANG_C_plus_plus_14 */ 0x0021
   };
----------------
SouraVX wrote:
> aprantl wrote:
> > I understand that DWARF does not define a C++17 language constant, but in 
> > the AST I fell like we should represent it, even if it is being lowered 
> > into C++14 for the debug info.
> It's represented in AST as enum in LangStandard.h file. We didn't add it 
> here, as DWARF5 has no opcode for C++17. If we add it here some opcode, this 
> might cause conflict with future upcoming DWARF standard.
Since these are the DWARF DW_lang constants, we shouldn't repeat their numeric 
values here. Can we write this as
`lang_c = llvm::dwarf::DW_LANG_C`, etc?


Repository:
  rC Clang

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

https://reviews.llvm.org/D67613



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

Reply via email to