Chromium Code Reviews| Index: vm/intermediate_language_x64.cc |
| =================================================================== |
| --- vm/intermediate_language_x64.cc (revision 10115) |
| +++ vm/intermediate_language_x64.cc (working copy) |
| @@ -2150,9 +2150,7 @@ |
| // Otherwise polymorphic dispatch. |
| } |
| // Call. |
| - LocationSummary* result = new LocationSummary(0, 0, LocationSummary::kCall); |
| - result->set_out(Location::RegisterLocation(RAX)); |
| - return result; |
| + return Computation::MakeCallSummary(); |
|
srdjan
2012/08/01 16:53:31
What about IA32? Let's try to keep it in sync when
Florian Schneider
2012/08/02 10:06:59
Oops. Thanks, I forgot about IA32.
|
| } |