Skip to content

Commit 1aa41cd

Browse files
authored
Fix Select.attachedTo (#4458)
Previously it would always fail to find anything.
1 parent ff031b8 commit 1aa41cd

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

src/main/scala/chisel3/aop/Select.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ object Select {
392392
.block
393393
.getCommands()
394394
) {
395-
case Attach(_, seq) if seq.contains(signal) => seq
395+
case Attach(_, seq) if seq.contains(Node(signal)) => seq
396396
}.flatMap { seq => seq.map(_.id.asInstanceOf[Data]) }.toSet
397397
}
398398

src/test/scala/chiselTests/aop/SelectSpec.scala

+14
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,20 @@ class SelectSpec extends ChiselFlatSpec {
8888

8989
}
9090

91+
"Test" should "pass if selecting attach" in {
92+
import chisel3.experimental.{attach, Analog}
93+
class AttachTest extends RawModule {
94+
val a, b, c = IO(Analog(8.W))
95+
attach(a, b, c)
96+
}
97+
val dut = ChiselGeneratorAnnotation(() => new AttachTest)
98+
.elaborate(1)
99+
.asInstanceOf[DesignAnnotation[AttachTest]]
100+
.design
101+
Select.attachedTo(dut)(dut.a) should be(Set(dut.a, dut.b, dut.c))
102+
103+
}
104+
91105
"Test" should "pass if selecting ops by kind" in {
92106
val dut = ChiselGeneratorAnnotation(() => {
93107
new SelectTester(Seq(0, 1, 2))

0 commit comments

Comments
 (0)