x86emitter: Remove bool_to_char

It was unused.
This commit is contained in:
Jonathan Li 2015-11-29 10:56:42 +00:00
parent 4d97089990
commit 57ad97d212
1 changed files with 0 additions and 5 deletions

View File

@ -24,11 +24,6 @@ __aligned16 x86capabilities x86caps;
// Recompiled code buffer for SSE and MXCSR feature testing. // Recompiled code buffer for SSE and MXCSR feature testing.
static __pagealigned u8 targetFXSAVE[512]; static __pagealigned u8 targetFXSAVE[512];
static const char* bool_to_char( bool testcond )
{
return testcond ? "true" : "false";
}
// Warning! We've had problems with the MXCSR detection code causing stack corruption in // Warning! We've had problems with the MXCSR detection code causing stack corruption in
// MSVC PGO builds. The problem was fixed when I moved the MXCSR code to this function, and // MSVC PGO builds. The problem was fixed when I moved the MXCSR code to this function, and
// moved the recSSE[] array to a global static (it was local to cpudetectInit). Commented // moved the recSSE[] array to a global static (it was local to cpudetectInit). Commented