Back out r70506 (exception spec in AST) again. We won't have exception specs until we've had a lot more discussion.
llvm-svn: 71125
This commit is contained in:
@@ -161,11 +161,6 @@ void PCHTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) {
|
||||
Writer.AddTypeRef(T->getArgType(I), Record);
|
||||
Record.push_back(T->isVariadic());
|
||||
Record.push_back(T->getTypeQuals());
|
||||
Record.push_back(T->hasExceptionSpec());
|
||||
Record.push_back(T->hasAnyExceptionSpec());
|
||||
Record.push_back(T->getNumExceptions());
|
||||
for (unsigned I = 0, N = T->getNumExceptions(); I != N; ++I)
|
||||
Writer.AddTypeRef(T->getExceptionType(I), Record);
|
||||
Code = pch::TYPE_FUNCTION_PROTO;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user