mirror of
https://github.com/corda/corda.git
synced 2025-05-31 22:50:53 +00:00
disable debug logging and fix build warnings
This commit is contained in:
parent
eacca98c3f
commit
7cdff9f1ee
@ -27,7 +27,7 @@ vmCall();
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
const bool Verbose = true;
|
const bool Verbose = false;
|
||||||
const bool DebugNatives = false;
|
const bool DebugNatives = false;
|
||||||
const bool DebugCallTable = false;
|
const bool DebugCallTable = false;
|
||||||
const bool DebugMethodTree = false;
|
const bool DebugMethodTree = false;
|
||||||
@ -5096,8 +5096,6 @@ compileThunks(MyThread* t, MyProcessor* p)
|
|||||||
+ codeSingletonSizeInBytes
|
+ codeSingletonSizeInBytes
|
||||||
(t, p->thunkSize * ThunkCount)));
|
(t, p->thunkSize * ThunkCount)));
|
||||||
|
|
||||||
Zone::Segment* oldSegment = codeZone(t)->segment;
|
|
||||||
|
|
||||||
p->defaultThunk = finish(t, defaultContext.context.assembler, "default");
|
p->defaultThunk = finish(t, defaultContext.context.assembler, "default");
|
||||||
p->nativeThunk = finish(t, nativeContext.context.assembler, "native");
|
p->nativeThunk = finish(t, nativeContext.context.assembler, "native");
|
||||||
p->aioobThunk = finish(t, aioobContext.context.assembler, "aioob");
|
p->aioobThunk = finish(t, aioobContext.context.assembler, "aioob");
|
||||||
@ -5121,8 +5119,6 @@ compileThunks(MyThread* t, MyProcessor* p)
|
|||||||
#include "thunks.cpp"
|
#include "thunks.cpp"
|
||||||
|
|
||||||
#undef THUNK
|
#undef THUNK
|
||||||
|
|
||||||
assert(t, oldSegment == codeZone(t)->segment);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
MyProcessor*
|
MyProcessor*
|
||||||
|
@ -2213,7 +2213,7 @@ class BoundsCheckEvent: public Event {
|
|||||||
}
|
}
|
||||||
|
|
||||||
CodePromise* nextPromise = codePromise(c, -1);
|
CodePromise* nextPromise = codePromise(c, -1);
|
||||||
CodePromise* outOfBoundsPromise;
|
CodePromise* outOfBoundsPromise = 0;
|
||||||
|
|
||||||
if (constant) {
|
if (constant) {
|
||||||
expect(c, constant->value.value->value() >= 0);
|
expect(c, constant->value.value->value() >= 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user