Optimizer - Fixed syntax that confused older G++
This commit is contained in:
parent
3d500d4976
commit
9151ceb2c9
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ void T_OptData::buildControlFlowGraph(
|
||||||
T_AutoArray< T_StackEntry_ , 8 > stack;
|
T_AutoArray< T_StackEntry_ , 8 > stack;
|
||||||
T_Array< T_CallSite_ > callSites;
|
T_Array< T_CallSite_ > callSites;
|
||||||
RP_CFN_ cNode{ nullptr };
|
RP_CFN_ cNode{ nullptr };
|
||||||
visitor.visit( program.root , [&]( auto& node , const bool exit ) {
|
visitor.visit( program.root , [&]( A_Node& node , const bool exit ) {
|
||||||
const auto nt{ node.type( ) };
|
const auto nt{ node.type( ) };
|
||||||
|
|
||||||
// Handle start/end of functions
|
// Handle start/end of functions
|
||||||
|
|
Loading…
Reference in a new issue