diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-02-06 06:46:52 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-02-06 06:46:52 +0000 |
| commit | 2ba84a6af71d466aab70820392089482e2f5e1c2 (patch) | |
| tree | 04006d9d3b1431026cb6fa5f1a5ff66bfc02f0d6 /lldb/source/Target | |
| parent | d193763f1c4f77e4156f913f2ffacb844775eb52 (diff) | |
| download | bcm5719-llvm-2ba84a6af71d466aab70820392089482e2f5e1c2.tar.gz bcm5719-llvm-2ba84a6af71d466aab70820392089482e2f5e1c2.zip | |
Add additional DWARF 5 language constants.
This also hooks up the new C++14 language constant to be treated
the same as the other C++ language constants.
Differential Revision: http://reviews.llvm.org/D7429
llvm-svn: 228386
Diffstat (limited to 'lldb/source/Target')
| -rw-r--r-- | lldb/source/Target/LanguageRuntime.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Target/LanguageRuntime.cpp b/lldb/source/Target/LanguageRuntime.cpp index 358bffee3a4..123ee93d322 100644 --- a/lldb/source/Target/LanguageRuntime.cpp +++ b/lldb/source/Target/LanguageRuntime.cpp @@ -337,6 +337,9 @@ struct language_name_pair language_names[] = { "swift", eLanguageTypeSwift }, { "julia", eLanguageTypeJulia }, { "dylan", eLanguageTypeDylan }, + { "c++14", eLanguageTypeC_plus_plus_14 }, + { "fortran03", eLanguageTypeFortran03 }, + { "fortran08", eLanguageTypeFortran08 }, // Now synonyms, in arbitrary order { "objc", eLanguageTypeObjC }, { "objc++", eLanguageTypeObjC_plus_plus } |

