Additional debug prints

This commit is contained in:
Wilson Snyder 2018-04-12 22:00:34 -04:00
parent 767ac2547d
commit 8b954dc381
2 changed files with 4 additions and 2 deletions

View File

@ -186,14 +186,16 @@ endif
debug-make::
@echo
@echo CPPFLAGS: $(CPPFLAGS)
@echo VM_PREFIX: $(VM_PREFIX)
@echo VM_PARALLEL_BUILDS: $(VM_PARALLEL_BUILDS)
@echo VM_CLASSES_FAST: $(VM_CLASSES_FAST)
@echo VM_CLASSES_SLOW: $(VM_CLASSES_SLOW)
@echo VM_SUPPORT_FAST: $(VM_SUPPORT_FAST)
@echo VM_SUPPORT_SLOW: $(VM_SUPPORT_SLOW)
@echo VM_GLOBAL_FAST: $(VM_GLOBAL_FAST)
@echo VM_GLOBAL_SLOW: $(VM_GLOBAL_SLOW)
@echo CPPFLAGS: $(CPPFLAGS)
@echo VK_OBJS: $(VK_OBJS)
@echo
######################################################################

View File

@ -487,6 +487,6 @@ void V3Unroll::unrollAll(AstNetlist* nodep) {
}
void V3Unroll::unrollGen(AstNodeFor* nodep, const string& beginName) {
UINFO(2,__FUNCTION__<<": "<<endl);
UINFO(5,__FUNCTION__<<": "<<endl);
UnrollVisitor visitor (nodep, true, beginName);
}