diff options
| author | Liang Qi <liang.qi@theqtcompany.com> | 2015-10-16 09:23:15 +0200 |
|---|---|---|
| committer | Liang Qi <liang.qi@theqtcompany.com> | 2015-10-16 09:23:15 +0200 |
| commit | 0be00760419a4eccdeea7828499d9fb47fc4bbad (patch) | |
| tree | d1abfcc27acc3e43bcd45aa713c486180b091864 /Source/JavaScriptCore | |
| parent | 14a3e9e525d48d18a823e9dd133a2175015bf6c2 (diff) | |
| parent | 93cc8d306f8033551fb60e2e1f8f480330778a21 (diff) | |
| download | qtwebkit-0be00760419a4eccdeea7828499d9fb47fc4bbad.tar.gz | |
Merge remote-tracking branch 'origin/5.6' into dev
Change-Id: Id0ecdb116f20801d1bd3d3c57c47888ed7a5085b
Diffstat (limited to 'Source/JavaScriptCore')
| -rw-r--r-- | Source/JavaScriptCore/assembler/ARMv7Assembler.h | 6 | ||||
| -rw-r--r-- | Source/JavaScriptCore/offlineasm/asm.rb | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/assembler/ARMv7Assembler.h b/Source/JavaScriptCore/assembler/ARMv7Assembler.h index 28989549d..ddb57b19d 100644 --- a/Source/JavaScriptCore/assembler/ARMv7Assembler.h +++ b/Source/JavaScriptCore/assembler/ARMv7Assembler.h @@ -1960,8 +1960,10 @@ public: int jumpSizeDelta(JumpType jumpType, JumpLinkType jumpLinkType) { return JUMP_ENUM_SIZE(jumpType) - JUMP_ENUM_SIZE(jumpLinkType); } // Assembler admin methods: - - static ALWAYS_INLINE bool linkRecordSourceComparator(const LinkRecord& a, const LinkRecord& b) +#if !OS(QNX) + ALWAYS_INLINE +#endif + static bool linkRecordSourceComparator(const LinkRecord& a, const LinkRecord& b) { return a.from() < b.from(); } diff --git a/Source/JavaScriptCore/offlineasm/asm.rb b/Source/JavaScriptCore/offlineasm/asm.rb index bf2426399..ed0f15340 100644 --- a/Source/JavaScriptCore/offlineasm/asm.rb +++ b/Source/JavaScriptCore/offlineasm/asm.rb @@ -28,6 +28,7 @@ $: << File.dirname(__FILE__) require "config" require "backends" require "digest/sha1" +require "fileutils" require "offsets" require "parser" require "self_hash" @@ -244,6 +245,7 @@ if FileTest.exist? outputFlnm firstLine = inp.gets if firstLine and firstLine.chomp == inputHash $stderr.puts "offlineasm: Nothing changed." + FileUtils.touch(outputFlnm) exit 0 end } |
