mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
VertexLoaderX64: fix 2GB warnings
Unlike the CPU JIT, the vertex loader JIT already emits position-independent code, so all we need to do is disable the warning.
This commit is contained in:
@ -38,10 +38,10 @@ public:
|
||||
virtual ~CodeBlock() { if (region) FreeCodeSpace(); }
|
||||
|
||||
// Call this before you generate any code.
|
||||
void AllocCodeSpace(int size)
|
||||
void AllocCodeSpace(int size, bool need_low = true)
|
||||
{
|
||||
region_size = size;
|
||||
region = (u8*)AllocateExecutableMemory(region_size);
|
||||
region = (u8*)AllocateExecutableMemory(region_size, need_low);
|
||||
T::SetCodePtr(region);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user