Displaying 1 result from an estimated 1 matches for "linecom".
Did you mean:
linecol
2019 Sep 13
2
DWARF-5 Supported languages Tags C++03, C++11,C++14
...uggests 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, "c++98",
CXX, "ISO C++ 1998 with amendments",
LineComment | CPlusPlus | Digraphs)
LANGSTANDARD_ALIAS(cxx98, "c++03")
So, my query is that since, c++98 and c++03 is mostly same assuming CLANG
Frontend.
Should we also support DW_LANG_C_plus_plus_03 ? for -std=c++03 in Frontend
or let it remain alias of c++98.
LLVM AsmPrinters has already co...