Skip to content

Commit 857f5f6

Browse files
authored
Merge pull request #1856 from nicolasnoble/newallocator
Brand new memory allocator.
2 parents 83dbc15 + 8b9df48 commit 857f5f6

File tree

4 files changed

+812
-413
lines changed

4 files changed

+812
-413
lines changed

src/mips/common/crt0/cxxglue.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ int main(int argc, char** argv);
4848
void cxxmain(int argc, char** argv) {
4949
size_t count, i;
5050

51+
#ifdef USE_PCSXMSAN
52+
pcsx_msanInit();
53+
#endif
54+
5155
count = __preinit_array_end - __preinit_array_start;
5256
for (i = 0; i < count; i++) {
5357
fptr f = __preinit_array_start[i];

0 commit comments

Comments
 (0)