[Lldb-commits] [lldb] r214501 - Update the code with clang changes r214450 (FunctionProtoType::ExtProtoInfo update)
Sylvestre Ledru
sylvestre at debian.org
Fri Aug 1 05:19:15 PDT 2014
Author: sylvestre
Date: Fri Aug 1 07:19:15 2014
New Revision: 214501
URL: http://llvm.org/viewvc/llvm-project?rev=214501&view=rev
Log:
Update the code with clang changes r214450 (FunctionProtoType::ExtProtoInfo update)
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=214501&r1=214500&r2=214501&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Fri Aug 1 07:19:15 2014
@@ -1754,12 +1754,10 @@ ClangASTContext::CreateFunctionType (AST
// TODO: Detect calling convention in DWARF?
FunctionProtoType::ExtProtoInfo proto_info;
proto_info.Variadic = is_variadic;
- proto_info.ExceptionSpecType = EST_None;
+ proto_info.ExceptionSpec = EST_None;
proto_info.TypeQuals = type_quals;
proto_info.RefQualifier = RQ_None;
- proto_info.NumExceptions = 0;
- proto_info.Exceptions = nullptr;
-
+
return ClangASTType (ast, ast->getFunctionType (result_type.GetQualType(),
qual_type_args,
proto_info).getAsOpaquePtr());
More information about the lldb-commits
mailing list