mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 20:59:51 +00:00
regenerate
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57114 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d0ad67788d
commit
8a88a37b16
File diff suppressed because it is too large
Load Diff
@ -1422,9 +1422,15 @@ Types
|
||||
CHECK_FOR_ERROR
|
||||
|
||||
FunctionType *FT = FunctionType::get(RetTy, Params, isVarArg);
|
||||
delete $3; // Delete the argument list
|
||||
delete $1; // Delete the return type handle
|
||||
$$ = new PATypeHolder(HandleUpRefs(FT));
|
||||
|
||||
// Delete the argument list
|
||||
for (I = $3->begin() ; I != E; ++I ) {
|
||||
delete I->Ty;
|
||||
}
|
||||
delete $3;
|
||||
|
||||
CHECK_FOR_ERROR
|
||||
}
|
||||
| VOID '(' ArgTypeListI ')' OptFuncAttrs {
|
||||
@ -1447,8 +1453,14 @@ Types
|
||||
CHECK_FOR_ERROR
|
||||
|
||||
FunctionType *FT = FunctionType::get($1, Params, isVarArg);
|
||||
delete $3; // Delete the argument list
|
||||
$$ = new PATypeHolder(HandleUpRefs(FT));
|
||||
|
||||
// Delete the argument list
|
||||
for (I = $3->begin() ; I != E; ++I ) {
|
||||
delete I->Ty;
|
||||
}
|
||||
delete $3;
|
||||
|
||||
CHECK_FOR_ERROR
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user