mirror of
https://github.com/vtil-project/VTIL-Core
synced 2026-08-17 08:23:03 -04:00
Fixed stack prop.
This commit is contained in:
parent
12cb62dc26
commit
cd4990fefb
1 changed files with 2 additions and 2 deletions
|
|
@ -73,7 +73,7 @@ namespace vtil::optimizer
|
|||
return cached_tracer::trace( std::move( lookup ) );
|
||||
}
|
||||
|
||||
symbolic::expression rtrace( symbolic::variable lookup ) override
|
||||
symbolic::expression rtrace( symbolic::variable lookup, int64_t limit = -1 ) override
|
||||
{
|
||||
// Invoke default tracer and store the result.
|
||||
//
|
||||
|
|
@ -87,7 +87,7 @@ namespace vtil::optimizer
|
|||
//
|
||||
auto& var = result.uid.get<symbolic::variable>();
|
||||
if ( var.is_memory() && !aux::is_local( var.mem().decay() ) )
|
||||
return tracer::rtrace( var );
|
||||
return tracer::rtrace( var, limit );
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue