Fix build.

This should fix the build breakage caused by the api change in 178663.

llvm-svn: 178700
This commit is contained in:
Rafael Espindola 2013-04-03 21:29:21 +00:00
parent f0eaa64c98
commit f24933f65e
4 changed files with 0 additions and 11 deletions

View File

@ -357,7 +357,6 @@ ASTResultSynthesizer::SynthesizeBodyResult (CompoundStmt *Body,
result_ptr_id,
ptr_qual_type,
NULL,
SC_Static,
SC_Static);
if (!result_decl)
@ -378,7 +377,6 @@ ASTResultSynthesizer::SynthesizeBodyResult (CompoundStmt *Body,
&result_id,
expr_qual_type,
NULL,
SC_Static,
SC_Static);
if (!result_decl)

View File

@ -1713,7 +1713,6 @@ NameSearchContext::AddVarDecl(void *type)
ii,
QualType::getFromOpaquePtr(type),
0,
SC_Static,
SC_Static);
m_decls.push_back(Decl);
@ -1763,7 +1762,6 @@ NameSearchContext::AddFunDecl (void *type)
arg_qual_type,
NULL,
SC_Static,
SC_Static,
NULL));
}

View File

@ -403,7 +403,6 @@ public:
arg_type,
NULL,
clang::SC_None,
clang::SC_None,
NULL));
}

View File

@ -1813,7 +1813,6 @@ ClangASTContext::AddMethodToCXXRecordType
DeclarationNameInfo (ast->DeclarationNames.getCXXOperatorName (op_kind), SourceLocation()),
method_qual_type,
NULL, // TypeSourceInfo *
is_static,
SC_None,
is_inline,
false /*is_constexpr*/,
@ -1843,7 +1842,6 @@ ClangASTContext::AddMethodToCXXRecordType
DeclarationNameInfo (decl_name, SourceLocation()),
method_qual_type,
NULL, // TypeSourceInfo *
is_static,
SC_None,
is_inline,
false /*is_constexpr*/,
@ -1875,7 +1873,6 @@ ClangASTContext::AddMethodToCXXRecordType
method_function_prototype->getArgType(param_index),
NULL,
SC_None,
SC_None,
NULL));
}
@ -2603,7 +2600,6 @@ ClangASTContext::AddObjCClassProperty
NULL, // anonymous
QualType::getFromOpaquePtr(property_opaque_type_to_access),
NULL,
SC_Auto,
SC_Auto,
NULL));
@ -2772,7 +2768,6 @@ ClangASTContext::AddMethodToObjCObjectType (ASTContext *ast,
NULL, // anonymous
method_function_prototype->getArgType(param_index),
NULL,
SC_Auto,
SC_Auto,
NULL));
}
@ -5326,7 +5321,6 @@ ClangASTContext::CreateParameterDeclaration (const char *name, clang_type_t para
QualType::getFromOpaquePtr(param_type),
NULL,
(VarDecl::StorageClass)storage,
(VarDecl::StorageClass)storage,
0);
}