aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/simplify.cc
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2020-05-08 05:30:32 +0000
committerGitHub <noreply@github.com>2020-05-08 05:30:32 +0000
commitebfdf61eb9703a16f949470f98509fdb405adf8f (patch)
treec5d9c3b6dd337630c50f75fb98a87f6897ef6a9c /frontends/ast/simplify.cc
parent5b779f7f4ef0bf2c4ad3a412da24fad30b078626 (diff)
parentd86fc791f9016fa6dafa7af1758ef301136e9eec (diff)
downloadyosys-ebfdf61eb9703a16f949470f98509fdb405adf8f.tar.gz
yosys-ebfdf61eb9703a16f949470f98509fdb405adf8f.tar.bz2
yosys-ebfdf61eb9703a16f949470f98509fdb405adf8f.zip
Merge pull request #2022 from Xiretza/fallthroughs
Avoid switch fall-through warnings
Diffstat (limited to 'frontends/ast/simplify.cc')
-rw-r--r--frontends/ast/simplify.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc
index e6200d663..318ffc1be 100644
--- a/frontends/ast/simplify.cc
+++ b/frontends/ast/simplify.cc
@@ -91,7 +91,7 @@ std::string AstNode::process_format_str(const std::string &sformat, int next_arg
case 'D':
if (got_len)
goto unsupported_format;
- /* fall through */
+ YS_FALLTHROUGH
case 'x':
case 'X':
if (next_arg >= GetSize(children))