[PATCH] D67613: [DWARF-5] Support for DWARF-5 C++ language tags
Adrian Prantl via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Sep 16 09:56:09 PDT 2019
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
};
----------------
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.
================
Comment at: lib/AST/DeclPrinter.cpp:1009
+ l = "C++_14";
+ else if (D->getLanguage() == LinkageSpecDecl::lang_cxx_11)
+ l = "C++_11";
----------------
Can you turn this into a switch() statement?
================
Comment at: lib/AST/DeclPrinter.cpp:1010
+ else if (D->getLanguage() == LinkageSpecDecl::lang_cxx_11)
+ l = "C++_11";
+ else {
----------------
Why this weird spelling with the underscore?
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67613/new/
https://reviews.llvm.org/D67613
More information about the cfe-commits
mailing list