We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b77037e commit 9e68dfaCopy full SHA for 9e68dfa
test/Dialect/FIRRTL/infer-domains-check-errors.mlir
@@ -0,0 +1,13 @@
1
+// RUN: circt-opt -pass-pipeline='builtin.module(firrtl.circuit(firrtl-infer-domains{mode=check}))' %s --verify-diagnostics --split-input-file
2
+
3
+// CHECK-LABEL: IncompleteDomainInformation
4
+firrtl.circuit "IncompleteDomainInformation" {
5
+ firrtl.domain @ClockDomain
6
7
+ firrtl.module private @Foo(
8
+ // expected-error @below {{missing "ClockDomain" association for port "x"}}
9
+ in %x: !firrtl.uint<1>
10
+ ) {}
11
12
+ firrtl.module @IncompleteDomainInformation() {}
13
+}
0 commit comments