Chromium Code Reviews| Index: src/codegen.cc |
| =================================================================== |
| --- src/codegen.cc (revision 6183) |
| +++ src/codegen.cc (working copy) |
| @@ -472,11 +472,12 @@ |
| int CEntryStub::MinorKey() { |
| + int result = (save_doubles_ == kSaveFPRegs) ? 1 : 0; |
| +#ifdef _WIN64 |
| ASSERT(result_size_ == 1 || result_size_ == 2); |
| - int result = save_doubles_ ? 1 : 0; |
| -#ifdef _WIN64 |
| return result | ((result_size_ == 1) ? 0 : 2); |
| #else |
| + ASSERT(result_size_ == 1); |
| return result; |
| #endif |
| } |