Skip to content

Commit

Permalink
Merge r174511 - Enable ARM64 disassembler for all platforms
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=137560

Patch by Akos Kiss <akiss@inf.u-szeged.hu> on 2014-10-09
Reviewed by Michael Saboff.

Remove PLATFORM conditions from around WTF_USE_ARM64_DISASSEMBLER since
the ARM64 disassembler has no platform dependencies anymore.

* wtf/Platform.h:

Canonical link: https://commits.webkit.org/154760.133@webkitgtk/2.6
git-svn-id: https://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.6@175882 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
akosthekiss authored and carlosgcampos committed Nov 11, 2014
1 parent b1c53fa commit 954388f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions Source/WTF/ChangeLog
@@ -1,3 +1,15 @@
2014-10-09 Akos Kiss <akiss@inf.u-szeged.hu>

Enable ARM64 disassembler for all platforms
https://bugs.webkit.org/show_bug.cgi?id=137560

Reviewed by Michael Saboff.

Remove PLATFORM conditions from around WTF_USE_ARM64_DISASSEMBLER since
the ARM64 disassembler has no platform dependencies anymore.

* wtf/Platform.h:

2014-09-19 Chris Dumez <cdumez@apple.com>

Allow DOM methods to return references instead of pointers
Expand Down
2 changes: 1 addition & 1 deletion Source/WTF/wtf/Platform.h
Expand Up @@ -699,7 +699,7 @@
#define ENABLE_DISASSEMBLER 1
#endif

#if !defined(WTF_USE_ARM64_DISASSEMBLER) && ENABLE(JIT) && (PLATFORM(IOS) || PLATFORM(EFL)) && CPU(ARM64) && !USE(LLVM_DISASSEMBLER)
#if !defined(WTF_USE_ARM64_DISASSEMBLER) && ENABLE(JIT) && CPU(ARM64) && !USE(LLVM_DISASSEMBLER)
#define WTF_USE_ARM64_DISASSEMBLER 1
#endif

Expand Down

0 comments on commit 954388f

Please sign in to comment.