mirror of
https://github.com/corda/corda.git
synced 2025-06-13 20:58:19 +00:00
update bootimage.cpp to reflect BootImage restructuring
This commit is contained in:
@ -87,7 +87,7 @@ makeCodeImage(Thread* t, Zone* zone, BootImage* image, uint8_t* code,
|
|||||||
object method = tripleFirst(t, calls);
|
object method = tripleFirst(t, calls);
|
||||||
uintptr_t address;
|
uintptr_t address;
|
||||||
if (methodFlags(t, method) & ACC_NATIVE) {
|
if (methodFlags(t, method) & ACC_NATIVE) {
|
||||||
address = reinterpret_cast<uintptr_t>(code + image->nativeThunk);
|
address = reinterpret_cast<uintptr_t>(code + image->thunks.native.start);
|
||||||
} else {
|
} else {
|
||||||
address = methodCompiled(t, method);
|
address = methodCompiled(t, method);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user