forked from OSchip/llvm-project
parent
20f5e974e4
commit
fb278831aa
|
@ -405,8 +405,8 @@ namespace {
|
||||||
// Objective-c statements
|
// Objective-c statements
|
||||||
virtual OwningStmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc,
|
virtual OwningStmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc,
|
||||||
SourceLocation RParen,
|
SourceLocation RParen,
|
||||||
DeclPtrTy Parm, StmtArg Body,
|
DeclPtrTy Parm,
|
||||||
StmtArg CatchList) {
|
StmtArg Body) {
|
||||||
Out << __FUNCTION__ << "\n";
|
Out << __FUNCTION__ << "\n";
|
||||||
return StmtEmpty();
|
return StmtEmpty();
|
||||||
}
|
}
|
||||||
|
@ -418,7 +418,8 @@ namespace {
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual OwningStmtResult ActOnObjCAtTryStmt(SourceLocation AtLoc,
|
virtual OwningStmtResult ActOnObjCAtTryStmt(SourceLocation AtLoc,
|
||||||
StmtArg Try, StmtArg Catch,
|
StmtArg Try,
|
||||||
|
MultiStmtArg CatchStmts,
|
||||||
StmtArg Finally) {
|
StmtArg Finally) {
|
||||||
Out << __FUNCTION__ << "\n";
|
Out << __FUNCTION__ << "\n";
|
||||||
return StmtEmpty();
|
return StmtEmpty();
|
||||||
|
|
Loading…
Reference in New Issue