From 1aec64551020936ea2d9179b2f10760f8d5359eb Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Wed, 9 May 2012 23:06:43 -0400 Subject: [PATCH] Internals: Fix dead parameter calls. No functional change. --- src/V3Width.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/V3Width.cpp b/src/V3Width.cpp index 9f0965194..fdfe17d08 100644 --- a/src/V3Width.cpp +++ b/src/V3Width.cpp @@ -1857,8 +1857,8 @@ private: // Underp is used in a boolean context, reduce a multibit number to one bit // Before calling this, iterate into underp with FINAL state, so numbers get resized appropriately bool ignoreWarn = false; // Not used - bool expWidth = 1; - bool expWidthMin = 1; + int expWidth = 1; + int expWidthMin = 1; if (expWidth!=1) nodep->v3fatalSrc("Only for binary functions"); bool bad = widthBad(underp,expWidth,expWidthMin); if (bad) {