 Chromium Code Reviews
 Chromium Code Reviews Issue 1089953004:
  VM: Fix potential bug in x64 inline cache stub.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
    
  
    Issue 1089953004:
  VM: Fix potential bug in x64 inline cache stub.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/| Index: runtime/vm/stub_code_x64.cc | 
| =================================================================== | 
| --- runtime/vm/stub_code_x64.cc (revision 45331) | 
| +++ runtime/vm/stub_code_x64.cc (working copy) | 
| @@ -1490,7 +1490,7 @@ | 
| __ movq(RBX, Address(RBP, kFirstLocalSlotFromFp * kWordSize)); | 
| __ UpdateRangeFeedback(RDX, 2, RBX, RCX, &done); | 
| __ Bind(&done); | 
| - __ LeaveFrame(); | 
| + __ LeaveStubFrame(); | 
| __ ret(); | 
| } else { | 
| __ jmp(RCX); |