summaryrefslogtreecommitdiff
path: root/chiselFrontend/src/main/scala/chisel3/RawModule.scala
diff options
context:
space:
mode:
authorChick Markley2020-01-31 13:22:05 -0800
committerGitHub2020-01-31 13:22:05 -0800
commitefc40252631869531e79f4d8490113d18e75cc1d (patch)
treeb1377a66921f953458523b54b531298f56beeb69 /chiselFrontend/src/main/scala/chisel3/RawModule.scala
parent86e92931dd1c83a863e14b382e9f094e8b18bc5c (diff)
parentf1c4395bd608234fef5a60d8851036d1acb2382f (diff)
Merge branch 'master' into add-asbool-to-clock
Diffstat (limited to 'chiselFrontend/src/main/scala/chisel3/RawModule.scala')
-rw-r--r--chiselFrontend/src/main/scala/chisel3/RawModule.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/RawModule.scala b/chiselFrontend/src/main/scala/chisel3/RawModule.scala
index 4155ef4a..2b184a50 100644
--- a/chiselFrontend/src/main/scala/chisel3/RawModule.scala
+++ b/chiselFrontend/src/main/scala/chisel3/RawModule.scala
@@ -184,17 +184,6 @@ package internal {
// Allow access to bindings from the compatibility package
protected def _compatIoPortBound() = portsContains(io)// scalastyle:ignore method.name
- protected override def nameIds(rootClass: Class[_]): HashMap[HasId, String] = {
- val names = super.nameIds(rootClass)
-
- // Allow IO naming without reflection
- names.put(io, "io")
- names.put(clock, "clock")
- names.put(reset, "reset")
-
- names
- }
-
private[chisel3] override def namePorts(names: HashMap[HasId, String]): Unit = {
for (port <- getModulePorts) {
// This should already have been caught