In couple places, we have missed INSIST(0) or ISC_UNREACHABLE() replacement on some branches with UNREACHABLE(). Replace all ISC_UNREACHABLE() or INSIST(0) calls with UNREACHABLE().
20 lines
179 B
Plaintext
20 lines
179 B
Plaintext
@@
|
|
@@
|
|
|
|
- INSIST(0);
|
|
+ UNREACHABLE();
|
|
... when != UNREACHABLE();
|
|
|
|
@@
|
|
@@
|
|
|
|
- INSIST(0);
|
|
- ISC_UNREACHABLE();
|
|
+ UNREACHABLE();
|
|
|
|
@@
|
|
@@
|
|
|
|
- UNREACHABLE();
|
|
UNREACHABLE();
|