mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 09:20:31 +08:00
d/dmd: Merge upstream dmd 62ce36f37
Adjusts the hardcoded index of Error.bypassException. Fixes: PR d/94623 Reviewed-on: https://github.com/dlang/dmd/pull/11052
This commit is contained in:
parent
8e841bd419
commit
46cf683bf1
@ -1,4 +1,4 @@
|
||||
ba99ee345694da61eca7b555517d540ff3dc0a56
|
||||
62ce36f3737de691217c21f0173f411734eb1d43
|
||||
|
||||
The first line of this file holds the git revision number of the last
|
||||
merge done from the dlang/dmd repository.
|
||||
|
@ -1652,21 +1652,28 @@ public:
|
||||
{
|
||||
// Little sanity check to make sure it's really a Throwable
|
||||
ClassReferenceExp *boss = oldest->thrown;
|
||||
assert((*boss->value->elements)[4]->type->ty == Tclass); // Throwable.next
|
||||
const int next = 4; // index of Throwable.next
|
||||
assert((*boss->value->elements)[next]->type->ty == Tclass); // Throwable.next
|
||||
ClassReferenceExp *collateral = newest->thrown;
|
||||
if ( isAnErrorException(collateral->originalClass()) &&
|
||||
!isAnErrorException(boss->originalClass()))
|
||||
{
|
||||
/* Find the index of the Error.bypassException field
|
||||
*/
|
||||
int bypass = next + 1;
|
||||
if ((*collateral->value->elements)[bypass]->type->ty == Tuns32)
|
||||
bypass += 1; // skip over _refcount field
|
||||
assert((*collateral->value->elements)[bypass]->type->ty == Tclass);
|
||||
|
||||
// The new exception bypass the existing chain
|
||||
assert((*collateral->value->elements)[5]->type->ty == Tclass);
|
||||
(*collateral->value->elements)[5] = boss;
|
||||
(*collateral->value->elements)[bypass] = boss;
|
||||
return newest;
|
||||
}
|
||||
while ((*boss->value->elements)[4]->op == TOKclassreference)
|
||||
while ((*boss->value->elements)[next]->op == TOKclassreference)
|
||||
{
|
||||
boss = (ClassReferenceExp *)(*boss->value->elements)[4];
|
||||
boss = (ClassReferenceExp *)(*boss->value->elements)[next];
|
||||
}
|
||||
(*boss->value->elements)[4] = collateral;
|
||||
(*boss->value->elements)[next] = collateral;
|
||||
return oldest;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user