mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-28 03:25:23 +00:00
fix build on amd64
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33367 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -872,7 +872,7 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
|
|||||||
Disassembler::X86_32, (uint32_t)FnStart);
|
Disassembler::X86_32, (uint32_t)FnStart);
|
||||||
#elif defined(__amd64__) || defined(__x86_64__)
|
#elif defined(__amd64__) || defined(__x86_64__)
|
||||||
<< disassembleBuffer(FnStart, FnEnd-FnStart,
|
<< disassembleBuffer(FnStart, FnEnd-FnStart,
|
||||||
Disassembler::X86_64, (uint32_t)FnStart);
|
Disassembler::X86_64, (uint64_t)FnStart);
|
||||||
#else
|
#else
|
||||||
<< "N/A\n";
|
<< "N/A\n";
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user