| Index: src/compiler/x87/code-generator-x87.cc
|
| diff --git a/src/compiler/x87/code-generator-x87.cc b/src/compiler/x87/code-generator-x87.cc
|
| index f3bce897a620b1d1653bf2669f2775b181f13fac..b9243c5ff168647564662640b3620e80f03ca75a 100644
|
| --- a/src/compiler/x87/code-generator-x87.cc
|
| +++ b/src/compiler/x87/code-generator-x87.cc
|
| @@ -2456,7 +2456,7 @@ void CodeGenerator::AssembleReturn(InstructionOperand* pop) {
|
| __ VerifyX87StackDepth(1);
|
| }
|
| bool clear_stack = true;
|
| - for (int i = 0; i < descriptor->ReturnCount(); i++) {
|
| + for (size_t i = 0; i < descriptor->ReturnCount(); i++) {
|
| MachineRepresentation rep = descriptor->GetReturnType(i).representation();
|
| LinkageLocation loc = descriptor->GetReturnLocation(i);
|
| if (IsFloatingPoint(rep) && loc == LinkageLocation::ForRegister(0)) {
|
|
|