| Index: src/hydrogen-instructions.cc | 
| =================================================================== | 
| --- src/hydrogen-instructions.cc	(revision 15942) | 
| +++ src/hydrogen-instructions.cc	(working copy) | 
| @@ -4375,7 +4375,11 @@ | 
| // We check for observed_input_representation elsewhere. | 
| Representation use_rep = | 
| it.value()->RequiredInputRepresentation(it.index()); | 
| -    if (!use_rep.IsNone() && !use_rep.IsSmi()) return true; | 
| +    if (!use_rep.IsNone() && | 
| +        !use_rep.IsSmi() && | 
| +        !use_rep.IsTagged()) { | 
| +      return true; | 
| +    } | 
| } | 
| return false; | 
| } | 
|  |