Skip to content

Commit

Permalink
Merge r182634 - [ARM] Fix calleeSaveRegisters() on non iOS platforms …
Browse files Browse the repository at this point in the history
…after r180516

https://bugs.webkit.org/show_bug.cgi?id=143368

Reviewed by Michael Saboff.

* jit/RegisterSet.cpp:
(JSC::RegisterSet::calleeSaveRegisters):
  • Loading branch information
ossy-szeged authored and carlosgcampos committed Apr 13, 2015
1 parent fb3058a commit 95a2ddb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Source/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
2015-04-10 Csaba Osztrogonác <ossy@webkit.org>

[ARM] Fix calleeSaveRegisters() on non iOS platforms after r180516
https://bugs.webkit.org/show_bug.cgi?id=143368

Reviewed by Michael Saboff.

* jit/RegisterSet.cpp:
(JSC::RegisterSet::calleeSaveRegisters):

2015-04-10 Michael Saboff <msaboff@apple.com>

REGRESSION (182567): regress/script-tests/sorting-benchmark.js fails on 32 bit dfg-eager tests
Expand Down
3 changes: 3 additions & 0 deletions Source/JavaScriptCore/jit/RegisterSet.cpp
Expand Up @@ -86,6 +86,9 @@ RegisterSet RegisterSet::calleeSaveRegisters()
result.set(ARMRegisters::r5);
result.set(ARMRegisters::r6);
result.set(ARMRegisters::r8);
#if !PLATFORM(IOS)
result.set(ARMRegisters::r9);
#endif
result.set(ARMRegisters::r10);
result.set(ARMRegisters::r11);
#elif CPU(ARM_TRADITIONAL)
Expand Down

0 comments on commit 95a2ddb

Please sign in to comment.