mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
remove the std::ostream version of module and type printing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79823 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -814,7 +814,7 @@ void ExecutionEngine::StoreValueToMemory(const GenericValue &Val,
|
||||
*((PointerTy*)Ptr) = Val.PointerVal;
|
||||
break;
|
||||
default:
|
||||
cerr << "Cannot store value of type " << *Ty << "!\n";
|
||||
errs() << "Cannot store value of type " << *Ty << "!\n";
|
||||
}
|
||||
|
||||
if (sys::isLittleEndianHost() != getTargetData()->isLittleEndian())
|
||||
@ -930,7 +930,7 @@ void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) {
|
||||
return;
|
||||
}
|
||||
|
||||
cerr << "Bad Type: " << *Init->getType() << "\n";
|
||||
errs() << "Bad Type: " << *Init->getType() << "\n";
|
||||
llvm_unreachable("Unknown constant type to initialize memory with!");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user