Jit64/JitIL: Fixed the constant value used to control block merging.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6210 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2774d4ffd4
commit
72af7b3e5e
|
@ -43,7 +43,7 @@ using namespace std;
|
||||||
|
|
||||||
static const int CODEBUFFER_SIZE = 32000;
|
static const int CODEBUFFER_SIZE = 32000;
|
||||||
// 0 does not perform block merging
|
// 0 does not perform block merging
|
||||||
static const int FUNCTION_FOLLOWING_THRESHOLD = 0;
|
static const int FUNCTION_FOLLOWING_THRESHOLD = 16;
|
||||||
|
|
||||||
CodeBuffer::CodeBuffer(int size)
|
CodeBuffer::CodeBuffer(int size)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue