mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
Only use _mm_malloc when compiling netlist standalone. (nw)
This commit is contained in:
parent
74942bf908
commit
12c9e541f3
@ -5,6 +5,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "pconfig.h"
|
||||
|
||||
#if (PSTANDALONE)
|
||||
#include <stdlib.h>
|
||||
#include <xmmintrin.h>
|
||||
|
||||
@ -20,3 +23,4 @@ void pfree_raw(void *p)
|
||||
//free(p);
|
||||
_mm_free(p);
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user