Ignore SDL/stdlib's memcpy

This commit is contained in:
Julio C. Rocha 2015-10-25 18:06:44 -07:00
parent 7f5ed2313c
commit 8b8bf13209
3 changed files with 4 additions and 1364 deletions

5
.gitignore vendored
View File

@ -47,9 +47,10 @@ Thumbs.db
/Plugin64/RSP/pdb
/Plugin64/RSP/RSP 1.7.dll
/Plugin64/RSP/RSP_d 1.7.dll
/Source/3rd Party/wx/lib/vc_lib/mswu/wx/msw/rcdefs.h
/Source/3rd Party/wx/lib/vc_lib/mswud/wx/msw/rcdefs.h
/Source/3rd Party/wx/lib/vc_lib/msw/wx/setup.h
/Source/3rd Party/wx/lib/vc_lib/mswd/wx/setup.h
/Source/3rd Party/wx/lib/vc_lib/mswu/wx/msw/rcdefs.h
/Source/3rd Party/wx/lib/vc_lib/mswu/wx/setup.h
/Source/3rd Party/wx/lib/vc_lib/mswud/wx/msw/rcdefs.h
/Source/3rd Party/wx/lib/vc_lib/mswud/wx/setup.h
/Save

View File

@ -244,7 +244,7 @@ int SDL_tolower(int x) { return ((x) >= 'A') && ((x) <= 'Z') ? ('a'+((x)-'A')) :
#endif
/* The optimizer on Visual Studio 2010/2012 generates memcpy() calls */
#if _MSC_VER >= 1600 && defined(_WIN64) && !defined(_DEBUG)
#if _MSC_VER >= 1600 && defined(_WIN64) && !defined(_DEBUG) && 0 // Disable to fix x64|Release build.
#include <intrin.h>
#pragma function(memcpy)

File diff suppressed because it is too large Load Diff