~ubuntu-branches/ubuntu/trusty/libv8/trusty

« back to all changes in this revision

Viewing changes to src/codegen.cc

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2012-02-20 14:08:17 UTC
  • mfrom: (15.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20120220140817-bsvmeoa4sxsj5hbz
Tags: 3.7.12.22-3
Fix mipsel build, allow test debug-step-3 to fail (non-crucial)

Show diffs side-by-side

added added

removed removed

Lines of Context:
218
218
 
219
219
 
220
220
int CEntryStub::MinorKey() {
 
221
  int result = (save_doubles_ == kSaveFPRegs) ? 1 : 0;
221
222
  ASSERT(result_size_ == 1 || result_size_ == 2);
222
 
  int result = save_doubles_ ? 1 : 0;
223
223
#ifdef _WIN64
224
224
  return result | ((result_size_ == 1) ? 0 : 2);
225
225
#else