diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-12-21 00:19:27 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-12-21 01:59:22 -0500 |
commit | 29f1ffea25b706ab0a03ac2bcf549e22332afefa (patch) | |
tree | d7c74abb2be4e27b80bc3b3791dff996527c17e3 | |
parent | d137b254d9aa4c91d5d2e7865d971bbdaa40e769 (diff) | |
download | gdb-29f1ffea25b706ab0a03ac2bcf549e22332afefa.zip gdb-29f1ffea25b706ab0a03ac2bcf549e22332afefa.tar.gz gdb-29f1ffea25b706ab0a03ac2bcf549e22332afefa.tar.bz2 |
sim: add ATTRIBUTE_FALLTHROUGH for local code
We'll replace various /* fall through */ comments so compilers can
actually understand what the code is doing.
-rw-r--r-- | sim/common/defs.h | 3 | ||||
-rw-r--r-- | sim/ppc/defs.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sim/common/defs.h b/sim/common/defs.h index 0f4062c..01db180 100644 --- a/sim/common/defs.h +++ b/sim/common/defs.h @@ -25,6 +25,9 @@ /* Include gnulib's various configure tests. */ #include "gnulib/config.h" +/* This comes from gnulib. Export it until ansidecl.h handles it. */ +#define ATTRIBUTE_FALLTHROUGH _GL_ATTRIBUTE_FALLTHROUGH + /* Reset macros that our config.h will provide. */ #undef PACKAGE #undef PACKAGE_BUGREPORT diff --git a/sim/ppc/defs.h b/sim/ppc/defs.h index 276063d..ab7a142 100644 --- a/sim/ppc/defs.h +++ b/sim/ppc/defs.h @@ -23,6 +23,9 @@ /* Include gnulib's various configure tests. */ #include "gnulib/config.h" +/* This comes from gnulib. Export it until ansidecl.h handles it. */ +#define ATTRIBUTE_FALLTHROUGH _GL_ATTRIBUTE_FALLTHROUGH + /* Reset macros that our config.h will provide. */ #undef PACKAGE #undef PACKAGE_BUGREPORT |