| Index: src/typing-asm.cc
|
| diff --git a/src/typing-asm.cc b/src/typing-asm.cc
|
| index 501af026dcba8b636aed0c653a9eae3a2efc7cd9..23a9bddd9715ef57c0885ca40fd70baf4f948569 100644
|
| --- a/src/typing-asm.cc
|
| +++ b/src/typing-asm.cc
|
| @@ -435,6 +435,11 @@ void AsmTyper::VisitNativeFunctionLiteral(NativeFunctionLiteral* expr) {
|
| }
|
|
|
|
|
| +void AsmTyper::VisitDoExpression(DoExpression* expr) {
|
| + FAIL(expr, "do-expression encountered");
|
| +}
|
| +
|
| +
|
| void AsmTyper::VisitConditional(Conditional* expr) {
|
| RECURSE(VisitWithExpectation(expr->condition(), cache_.kInt32,
|
| "condition expected to be integer"));
|
|
|