| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index 312f84899cfff6b4fa746be2a68ba2a4503bd94e..c3936a5a6a8bf8644a5a538737c3960522e7fdc2 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -2544,9 +2544,14 @@ Type* Typer::Visitor::TypeLoadParentFramePointer(Node* node) {
|
|
|
| Type* Typer::Visitor::TypeCheckedLoad(Node* node) { return Type::Any(); }
|
|
|
| +Type* Typer::Visitor::TypeCheckedStore(Node* node) {
|
| + UNREACHABLE();
|
| + return nullptr;
|
| +}
|
| +
|
| Type* Typer::Visitor::TypeAtomicLoad(Node* node) { return Type::Any(); }
|
|
|
| -Type* Typer::Visitor::TypeCheckedStore(Node* node) {
|
| +Type* Typer::Visitor::TypeAtomicStore(Node* node) {
|
| UNREACHABLE();
|
| return nullptr;
|
| }
|
|
|