| Index: src/typing-asm.cc
 | 
| diff --git a/src/typing-asm.cc b/src/typing-asm.cc
 | 
| index a58572a1d9cb75b5a3f6807d8e9e52e7f128d529..5198f5918337fa47bfbc502be473d44603469719 100644
 | 
| --- a/src/typing-asm.cc
 | 
| +++ b/src/typing-asm.cc
 | 
| @@ -436,6 +436,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"));
 | 
| 
 |