[Lldb-commits] [lldb] r315524 - Add cases for new type DependentAddressSpace, added in r314649
Ted Woodward via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 11 15:42:21 PDT 2017
Author: ted
Date: Wed Oct 11 15:42:21 2017
New Revision: 315524
URL: http://llvm.org/viewvc/llvm-project?rev=315524&view=rev
Log:
Add cases for new type DependentAddressSpace, added in r314649
Modified:
lldb/trunk/source/Symbol/ClangASTContext.cpp
Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=315524&r1=315523&r2=315524&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Wed Oct 11 15:42:21 2017
@@ -4351,6 +4351,9 @@ ClangASTContext::GetTypeClass(lldb::opaq
break;
case clang::Type::ObjCTypeParam:
break;
+
+ case clang::Type::DependentAddressSpace:
+ break;
}
// We don't know hot to display this type...
return lldb::eTypeClassOther;
@@ -5161,6 +5164,9 @@ lldb::Encoding ClangASTContext::GetEncod
break;
case clang::Type::ObjCTypeParam:
break;
+
+ case clang::Type::DependentAddressSpace:
+ break;
}
count = 0;
return lldb::eEncodingInvalid;
@@ -5311,6 +5317,9 @@ lldb::Format ClangASTContext::GetFormat(
break;
case clang::Type::ObjCTypeParam:
break;
+
+ case clang::Type::DependentAddressSpace:
+ break;
}
// We don't know hot to display this type...
return lldb::eFormatBytes;
More information about the lldb-commits
mailing list