aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-07-09 16:56:29 +0200
committerGitHub <noreply@github.com>2019-07-09 16:56:29 +0200
commitef07a313b4122b9ceb233ed7dd4733db97272577 (patch)
treeef7570bb5a462e44cc40da51894917db7ff4a76a /kernel
parenta429aedc0ff21b95ded89320144d2063234a3d7e (diff)
parent93bc5affd3fc635dafec3a37bf4c5b94c252036f (diff)
downloadyosys-ef07a313b4122b9ceb233ed7dd4733db97272577.tar.gz
yosys-ef07a313b4122b9ceb233ed7dd4733db97272577.tar.bz2
yosys-ef07a313b4122b9ceb233ed7dd4733db97272577.zip
Merge pull request #1162 from whitequark/rtlil-case-attrs
Allow attributes on individual switch cases in RTLIL
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rtlil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index f4fcf5dcf..82cbfaf28 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -1327,7 +1327,7 @@ public:
#endif
};
-struct RTLIL::CaseRule
+struct RTLIL::CaseRule : public RTLIL::AttrObject
{
std::vector<RTLIL::SigSpec> compare;
std::vector<RTLIL::SigSig> actions;