mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-16 12:24:03 +00:00
changes to make it compatible with 64bit gcc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2795 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -6,6 +6,7 @@
|
||||
#include "llvm/BasicBlock.h"
|
||||
#include "llvm/Instruction.h"
|
||||
#include <map>
|
||||
#include <iostream>
|
||||
|
||||
// FIXME: This should be merged with FunctionInlining
|
||||
|
||||
@ -22,8 +23,8 @@ static inline void RemapInstruction(Instruction *I,
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (!V) {
|
||||
cerr << "Val = \n" << Op << "Addr = " << (void*)Op;
|
||||
cerr << "\nInst = " << I;
|
||||
std::cerr << "Val = \n" << Op << "Addr = " << (void*)Op;
|
||||
std::cerr << "\nInst = " << I;
|
||||
}
|
||||
#endif
|
||||
assert(V && "Referenced value not in value map!");
|
||||
|
Reference in New Issue
Block a user