Skip to content

Commit fba6a10

Browse files
committed
Revert id_to_vName change
It may have been needed for the VModInfo created by vMkRWire1, but that has been removed and testing passes without the change. Plus, VName should not be qualified, so better to catch if we are creating a qualified name somewhere.
1 parent 60df15d commit fba6a10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/VModInfo.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ getVNameString (VName string) = string
6767

6868
-- convert Bluespec identifier to Verilog names
6969
id_to_vName :: Id -> VName
70-
id_to_vName i = VName (getIdBaseString i)
70+
id_to_vName i = VName (getIdString i)
7171

7272
vName_to_id :: VName -> Id
7373
vName_to_id (VName s) = mk_homeless_id s

0 commit comments

Comments
 (0)