| Index: src/compiler/raw-machine-assembler.h | 
| diff --git a/src/compiler/raw-machine-assembler.h b/src/compiler/raw-machine-assembler.h | 
| index 7329af0598232a8560c44e9fe272c4b765bda17c..600e0a56ee40a8ffc479d431d909f0fed6fe2866 100644 | 
| --- a/src/compiler/raw-machine-assembler.h | 
| +++ b/src/compiler/raw-machine-assembler.h | 
| @@ -349,6 +349,12 @@ class RawMachineAssembler { | 
| Node* Float32Div(Node* a, Node* b) { | 
| return NewNode(machine()->Float32Div(), a, b); | 
| } | 
| +  Node* Float32Max(Node* a, Node* b) { | 
| +    return NewNode(machine()->Float32Max().op(), a, b); | 
| +  } | 
| +  Node* Float32Min(Node* a, Node* b) { | 
| +    return NewNode(machine()->Float32Min().op(), a, b); | 
| +  } | 
| Node* Float32Abs(Node* a) { return NewNode(machine()->Float32Abs(), a); } | 
| Node* Float32Sqrt(Node* a) { return NewNode(machine()->Float32Sqrt(), a); } | 
| Node* Float32Equal(Node* a, Node* b) { | 
| @@ -383,6 +389,12 @@ class RawMachineAssembler { | 
| Node* Float64Mod(Node* a, Node* b) { | 
| return NewNode(machine()->Float64Mod(), a, b); | 
| } | 
| +  Node* Float64Max(Node* a, Node* b) { | 
| +    return NewNode(machine()->Float64Max().op(), a, b); | 
| +  } | 
| +  Node* Float64Min(Node* a, Node* b) { | 
| +    return NewNode(machine()->Float64Min().op(), a, b); | 
| +  } | 
| Node* Float64Abs(Node* a) { return NewNode(machine()->Float64Abs(), a); } | 
| Node* Float64Sqrt(Node* a) { return NewNode(machine()->Float64Sqrt(), a); } | 
| Node* Float64Equal(Node* a, Node* b) { | 
|  |