mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Better const handling for RuntimeDyld and MCJIT.
mapSectionAddress() wasn't consistent. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163843 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -244,7 +244,7 @@ public:
|
||||
/// Map the address of a JIT section as returned from the memory manager
|
||||
/// to the address in the target process as the running code will see it.
|
||||
/// This is the address which will be used for relocation resolution.
|
||||
virtual void mapSectionAddress(void *LocalAddress, uint64_t TargetAddress) {
|
||||
virtual void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress) {
|
||||
llvm_unreachable("Re-mapping of section addresses not supported with this "
|
||||
"EE!");
|
||||
}
|
||||
|
Reference in New Issue
Block a user