Rename __hier*.f files to match other generated files

This commit is contained in:
Wilson Snyder 2023-11-21 20:31:54 -05:00
parent 25ca965938
commit ed05caec93
2 changed files with 3 additions and 3 deletions

View File

@ -50,9 +50,9 @@ For --cc/--sc, it creates:
- Make include file with class names (from --make gmake) - Make include file with class names (from --make gmake)
* - *{prefix}*\ _hier.mk * - *{prefix}*\ _hier.mk
- Make file for hierarchy blocks (from --make gmake) - Make file for hierarchy blocks (from --make gmake)
* - *{prefix}*\ _hierMkArgs.f * - *{prefix}*\ __hierMkArgs.f
- Arguments for hierarchical Verilation (from --make gmake) - Arguments for hierarchical Verilation (from --make gmake)
* - *{prefix}*\ _hierCMakeArgs.f * - *{prefix}*\ __hierCMakeArgs.f
- Arguments for hierarchical Verilation (from --make cmake) - Arguments for hierarchical Verilation (from --make cmake)
* - *{prefix}*\ .h * - *{prefix}*\ .h
- Model header - Model header

View File

@ -90,7 +90,7 @@ VL_DEFINE_DEBUG_FUNCTIONS;
static string V3HierCommandArgsFileName(const string& prefix, bool forCMake) { static string V3HierCommandArgsFileName(const string& prefix, bool forCMake) {
return v3Global.opt.makeDir() + "/" + prefix return v3Global.opt.makeDir() + "/" + prefix
+ (forCMake ? "_hierCMakeArgs.f" : "_hierMkArgs.f"); + (forCMake ? "__hierCMakeArgs.f" : "__hierMkArgs.f");
} }
static void V3HierWriteCommonInputs(const V3HierBlock* hblockp, std::ostream* of, bool forCMake) { static void V3HierWriteCommonInputs(const V3HierBlock* hblockp, std::ostream* of, bool forCMake) {