Index: src/compiler/instruction-selector.cc |
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc |
index 86868e59eee5292ef7ec821f98eb4d5b3575396f..3b2acabcc242524db2122cba4c2ebfecc1aa2c91 100644 |
--- a/src/compiler/instruction-selector.cc |
+++ b/src/compiler/instruction-selector.cc |
@@ -956,6 +956,8 @@ void InstructionSelector::VisitNode(Node* node) { |
return MarkAsWord32(node), VisitChangeFloat64ToInt32(node); |
case IrOpcode::kChangeFloat64ToUint32: |
return MarkAsWord32(node), VisitChangeFloat64ToUint32(node); |
+ case IrOpcode::kTruncateFloat32ToInt32: |
+ return MarkAsWord64(node), VisitTruncateFloat32ToInt32(node); |
titzer
2016/01/15 12:39:27
s/Word64/Word32/
ahaas
2016/01/15 12:52:17
Done.
|
case IrOpcode::kTryTruncateFloat32ToInt64: |
return MarkAsWord64(node), VisitTryTruncateFloat32ToInt64(node); |
case IrOpcode::kTryTruncateFloat64ToInt64: |