diff options
Diffstat (limited to 'chromium/v8/src/compiler/representation-change.cc')
-rw-r--r-- | chromium/v8/src/compiler/representation-change.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chromium/v8/src/compiler/representation-change.cc b/chromium/v8/src/compiler/representation-change.cc index fedf7afc0e9..f59c8bc909a 100644 --- a/chromium/v8/src/compiler/representation-change.cc +++ b/chromium/v8/src/compiler/representation-change.cc @@ -467,6 +467,8 @@ const Operator* RepresentationChanger::Uint32OperatorFor( return machine()->Uint32LessThanOrEqual(); case IrOpcode::kNumberClz32: return machine()->Word32Clz(); + case IrOpcode::kNumberImul: + return machine()->Int32Mul(); default: UNREACHABLE(); return nullptr; |