From c8ba51581f2c1f04b17237349427e5bc4cc7e340 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 30 Apr 2018 20:34:52 -0400 Subject: [PATCH] Commentary --- src/V3EmitC.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/V3EmitC.cpp b/src/V3EmitC.cpp index a048ea89e..490b805cd 100644 --- a/src/V3EmitC.cpp +++ b/src/V3EmitC.cpp @@ -2558,19 +2558,19 @@ void V3EmitC::emitc() { UINFO(2,__FUNCTION__<<": "<modulesp(); nodep; nodep=nodep->nextp()->castNodeModule()) { - if (v3Global.opt.outputSplit()) { - { EmitCImp imp; imp.main(nodep, false, true); } - { EmitCImp imp; imp.main(nodep, true, false); } - } else { - { EmitCImp imp; imp.main(nodep, true, true); } - } + if (v3Global.opt.outputSplit()) { + { EmitCImp fast; fast.main(nodep, false, true); } + { EmitCImp slow; slow.main(nodep, true, false); } + } else { + { EmitCImp both; both.main(nodep, true, true); } + } } } void V3EmitC::emitcTrace() { UINFO(2,__FUNCTION__<<": "<