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:
Andrew Lenharth 2007-01-19 20:17:59 +00:00
parent 970a419633
commit a9ebd2b91f

View File

@ -872,7 +872,7 @@ bool JITEmitter::finishFunction(MachineFunction &F) {
Disassembler::X86_32, (uint32_t)FnStart);
#elif defined(__amd64__) || defined(__x86_64__)
<< disassembleBuffer(FnStart, FnEnd-FnStart,
Disassembler::X86_64, (uint32_t)FnStart);
Disassembler::X86_64, (uint64_t)FnStart);
#else
<< "N/A\n";
#endif