mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
Drop Logger's StaticEnabled feature
This commit is contained in:
@@ -16,7 +16,7 @@ using namespace llvm;
|
||||
|
||||
using range_size_t = uint64_t;
|
||||
|
||||
static Logger<> &Log = ValueMaterializerLogger;
|
||||
static Logger &Log = ValueMaterializerLogger;
|
||||
|
||||
const range_size_t MaxMaterializedValues = (1 << 16);
|
||||
|
||||
@@ -291,7 +291,7 @@ DataFlowGraph::materializeImpl(DataFlowGraph::Node *N,
|
||||
rc_return It->second;
|
||||
|
||||
revng_log(Log, "Materializing " << N->valueToString());
|
||||
LoggerIndent<> Indent(Log);
|
||||
LoggerIndent Indent(Log);
|
||||
|
||||
// Prevent attempting to materialize more than MaxMaterializedValues
|
||||
if (N->SizeLowerBound > MaxMaterializedValues) {
|
||||
|
||||
Reference in New Issue
Block a user