Changeset 165180 in webkit for trunk/Source/JavaScriptCore/disassembler
- Timestamp:
- Mar 6, 2014, 1:17:18 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/disassembler/ARM64Disassembler.cpp
r157474 r165180 1 1 /* 2 * Copyright (C) 2012 Apple Inc. All rights reserved.2 * Copyright (C) 2012, 2014 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 56 56 #endif // USE(ARM64_DISASSEMBLER) 57 57 58 #if USE(LLVM_DISASSEMBLER) 59 60 #include "LLVMDisassembler.h" 61 62 namespace JSC { 63 64 bool tryToDisassemble(const MacroAssemblerCodePtr& codePtr, size_t size, const char* prefix, PrintStream& out, InstructionSubsetHint hint) 65 { 66 return tryToDisassembleWithLLVM(codePtr, size, prefix, out, hint); 67 } 68 69 } // namespace JSC 70 71 #endif // USE(LLVM_DISASSEMBLER)
Note:
See TracChangeset
for help on using the changeset viewer.