aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/assembler/AssemblerBufferWithConstantPool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/masm/assembler/AssemblerBufferWithConstantPool.h')
-rw-r--r--src/3rdparty/masm/assembler/AssemblerBufferWithConstantPool.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/3rdparty/masm/assembler/AssemblerBufferWithConstantPool.h b/src/3rdparty/masm/assembler/AssemblerBufferWithConstantPool.h
index 5377ef0c7a..4c729a871c 100644
--- a/src/3rdparty/masm/assembler/AssemblerBufferWithConstantPool.h
+++ b/src/3rdparty/masm/assembler/AssemblerBufferWithConstantPool.h
@@ -105,14 +105,14 @@ public:
, m_maxDistance(maxPoolSize)
, m_lastConstDelta(0)
{
- m_pool = static_cast<uint32_t*>(fastMalloc(maxPoolSize));
- m_mask = static_cast<char*>(fastMalloc(maxPoolSize / sizeof(uint32_t)));
+ m_pool = static_cast<uint32_t*>(malloc(maxPoolSize));
+ m_mask = static_cast<char*>(malloc(maxPoolSize / sizeof(uint32_t)));
}
~AssemblerBufferWithConstantPool()
{
- fastFree(m_mask);
- fastFree(m_pool);
+ free(m_mask);
+ free(m_pool);
}
void ensureSpace(int space)