diff options
Diffstat (limited to 'Source/JavaScriptCore/disassembler/ARM64Disassembler.cpp')
-rw-r--r-- | Source/JavaScriptCore/disassembler/ARM64Disassembler.cpp | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/Source/JavaScriptCore/disassembler/ARM64Disassembler.cpp b/Source/JavaScriptCore/disassembler/ARM64Disassembler.cpp index 900b87ef7..713c1a74c 100644 --- a/Source/JavaScriptCore/disassembler/ARM64Disassembler.cpp +++ b/Source/JavaScriptCore/disassembler/ARM64Disassembler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012, 2014 Apple Inc. All rights reserved. + * Copyright (C) 2012 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -23,7 +23,6 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#define __STDC_FORMAT_MACROS #include "config.h" #include "Disassembler.h" @@ -56,17 +55,3 @@ bool tryToDisassemble(const MacroAssemblerCodePtr& codePtr, size_t size, const c #endif // USE(ARM64_DISASSEMBLER) -#if USE(LLVM_DISASSEMBLER) && CPU(ARM64) - -#include "LLVMDisassembler.h" - -namespace JSC { - -bool tryToDisassemble(const MacroAssemblerCodePtr& codePtr, size_t size, const char* prefix, PrintStream& out, InstructionSubsetHint hint) -{ - return tryToDisassembleWithLLVM(codePtr, size, prefix, out, hint); -} - -} // namespace JSC - -#endif // USE(LLVM_DISASSEMBLER) && CPU(ARM64) |