Fix dpi exports with > 32 bit but < 64 bit args, bug423.

This commit is contained in:
Wilson Snyder
2011-11-28 21:15:57 -05:00
parent 8ff2bf51c5
commit f488701adc
5 changed files with 108 additions and 1 deletions
+1 -1
View File
@@ -627,7 +627,7 @@ private:
ket += ")";
}
if (!cvt
&& portp->basicp() && portp->basicp()->isBitLogic() && portp->widthMin() != 1 && !portp->isWide())
&& portp->basicp() && portp->basicp()->isBitLogic() && portp->widthMin() != 1 && !portp->isWide() && !portp->isQuad())
stmt += "*"; // it's a svBitVecVal, which other code won't think is arrayed (as WData aren't), but really is
stmt += frName;
stmt += ket;