| Index: test/unittests/compiler/raw-machine-assembler.h
|
| diff --git a/test/unittests/compiler/raw-machine-assembler.h b/test/unittests/compiler/raw-machine-assembler.h
|
| index d87da8d4daab86550e04aeb64b3b41c3baf5caf9..80af21339f18006052e76cc78bce3f7687a0cda7 100644
|
| --- a/test/unittests/compiler/raw-machine-assembler.h
|
| +++ b/test/unittests/compiler/raw-machine-assembler.h
|
| @@ -285,11 +285,14 @@ class RawMachineAssembler : public GraphBuilder {
|
| Node* Int64LessThan(Node* a, Node* b) {
|
| return NewNode(machine()->Int64LessThan(), a, b);
|
| }
|
| + Node* Int64LessThanOrEqual(Node* a, Node* b) {
|
| + return NewNode(machine()->Int64LessThanOrEqual(), a, b);
|
| + }
|
| Node* Uint64LessThan(Node* a, Node* b) {
|
| return NewNode(machine()->Uint64LessThan(), a, b);
|
| }
|
| - Node* Int64LessThanOrEqual(Node* a, Node* b) {
|
| - return NewNode(machine()->Int64LessThanOrEqual(), a, b);
|
| + Node* Uint64LessThanOrEqual(Node* a, Node* b) {
|
| + return NewNode(machine()->Uint64LessThanOrEqual(), a, b);
|
| }
|
| Node* Int64GreaterThan(Node* a, Node* b) { return Int64LessThan(b, a); }
|
| Node* Int64GreaterThanOrEqual(Node* a, Node* b) {
|
|
|