Displaying 1 result from an estimated 1 matches for "cplusplus2a".
Did you mean:
cplusplus
2019 Sep 13
2
DWARF-5 Supported languages Tags C++03, C++11,C++14
...LANG_C_plus_plus_03
DW_LANG_C_plus_plus_11
DW_LANG_C_plus_plus_14
While, C++11 and C++14, is defined and can be emitted by Frontend.
"include/clang/Basci/LangStandard.h"
CPlusPlus = (1 << 5),
CPlusPlus11 = (1 << 6),
CPlusPlus14 = (1 << 7),
CPlusPlus17 = (1 << 8),
CPlusPlus2a = (1 << 9),
Currently CLANG emits "DW_LANG_C_plus_plus" which in DWARF suggests ISO
C++98, regardless of the -std=... specified in commandline.
Also in file "include/clang/Basci/LangStandards.def" CLANG has aliased
c++98 and c++03.
// C++ modes
LANGSTANDARD(cxx98, &quo...