Fix minor V3DfgPatternStats coding issues

This commit is contained in:
Geza Lore 2024-03-01 12:51:23 +00:00
parent adfe072b89
commit 9dcb7ea6a9
2 changed files with 5 additions and 2 deletions

View File

@ -64,6 +64,7 @@ set(HEADERS
V3Dfg.h V3Dfg.h
V3DfgOptimizer.h V3DfgOptimizer.h
V3DfgPasses.h V3DfgPasses.h
V3DfgPatternStats.h
V3DfgPeephole.h V3DfgPeephole.h
V3DfgVertices.h V3DfgVertices.h
V3DupFinder.h V3DupFinder.h

View File

@ -14,10 +14,10 @@
// //
//************************************************************************* //*************************************************************************
#include "V3PchAstNoMT.h" #ifndef VERILATOR_V3DFGPATTERNSTATS_H_
#define VERILATOR_V3DFGPATTERNSTATS_H_
#include "V3Dfg.h" #include "V3Dfg.h"
#include "V3DfgPasses.h"
#include <algorithm> #include <algorithm>
#include <map> #include <map>
@ -195,3 +195,5 @@ public:
} }
} }
}; };
#endif