Commit ceaccc91 authored by mbrandy's avatar mbrandy Committed by Commit bot

PPC: [turbofan] Add TruncateFloat32ToUint32 operator to Turbofan.

Port 2166bd8c

R=joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
BUG=

Review URL: https://codereview.chromium.org/1677213002

Cr-Commit-Position: refs/heads/master@{#33830}
parent 605aced0
......@@ -1021,12 +1021,12 @@ void InstructionSelector::VisitTruncateFloat64ToInt32(Node* node) {
void InstructionSelector::VisitTruncateFloat32ToInt32(Node* node) {
return VisitRR(this, kPPC_DoubleToInt32, node);
VisitRR(this, kPPC_DoubleToInt32, node);
}
void InstructionSelector::VisitTruncateFloat32ToUint32(Node* node) {
UNIMPLEMENTED();
VisitRR(this, kPPC_DoubleToUint32, node);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment