diff options
author | ossy@webkit.org <ossy@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc> | 2013-09-13 15:55:51 +0000 |
---|---|---|
committer | Julien Brianceau <jbriance@cisco.com> | 2014-09-18 18:00:50 +0200 |
commit | 4f553958aca984c93dcfcf7d6c1c3e682ee7b4b4 (patch) | |
tree | 0b1c4f17e6dd262221c6590c9d3816ae81b25a99 /Source/JavaScriptCore/dfg/DFGCCallHelpers.h | |
parent | bb5c794c91298a3dfc0acf4a2299bf74b52f3eaa (diff) | |
download | qtwebkit-4f553958aca984c93dcfcf7d6c1c3e682ee7b4b4.tar.gz |
ARM EABI hardfp buildfix after r155675
https://bugs.webkit.org/show_bug.cgi?id=121287
Reviewed by Geoffrey Garen.
Change-Id: I03c086a652b501c5424a6de6763fed1c88466e3a
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@155705 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGCCallHelpers.h')
-rw-r--r-- | Source/JavaScriptCore/dfg/DFGCCallHelpers.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGCCallHelpers.h b/Source/JavaScriptCore/dfg/DFGCCallHelpers.h index caf7a91d4..1a0b723ee 100644 --- a/Source/JavaScriptCore/dfg/DFGCCallHelpers.h +++ b/Source/JavaScriptCore/dfg/DFGCCallHelpers.h @@ -563,12 +563,13 @@ public: move(GPRInfo::callFrameRegister, GPRInfo::argumentGPR0); } - ALWAYS_INLINE void setupArgumentsWithExecState(TrustedImm32, GPRReg arg2, GPRReg arg3, FPRReg arg4) + ALWAYS_INLINE void setupArgumentsWithExecState(GPRReg arg1, GPRReg arg2, TrustedImm32, FPRReg arg4) { moveDouble(arg4, FPRInfo::argumentFPR0); - setupStubArguments(arg2, arg3); + setupStubArguments(arg1, arg2); move(GPRInfo::callFrameRegister, GPRInfo::argumentGPR0); } + #else ALWAYS_INLINE void setupArguments(FPRReg arg1) { |