aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-12-21 01:35:29 -0500
committerMike Frysinger <vapier@gentoo.org>2023-12-21 01:59:23 -0500
commit92a9d946da8be990b2660c7f68b5dd0e3dbb1cc2 (patch)
tree75ba2afe6da7e43d6e331b27056b6bf90e948770
parent77b3c4f66647058625d92b866a7ef689ee75557e (diff)
downloadgdb-92a9d946da8be990b2660c7f68b5dd0e3dbb1cc2.zip
gdb-92a9d946da8be990b2660c7f68b5dd0e3dbb1cc2.tar.gz
gdb-92a9d946da8be990b2660c7f68b5dd0e3dbb1cc2.tar.bz2
sim: ppc: fix -Wimplicit-fallthrough warnings
Replace some fall through comments with the attribute.
-rw-r--r--sim/ppc/device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/ppc/device.c b/sim/ppc/device.c
index 4537e89..45dda89 100644
--- a/sim/ppc/device.c
+++ b/sim/ppc/device.c
@@ -1453,7 +1453,7 @@ device_find_string_array_property(device *me,
if (node->sizeof_array == 0
|| ((char*)node->array)[node->sizeof_array - 1] != '\0')
device_error(me, "property %s invalid for string array", property);
- /* FALL THROUGH */
+ ATTRIBUTE_FALLTHROUGH;
case string_array_property:
ASSERT(node->sizeof_array > 0);
ASSERT(((char*)node->array)[node->sizeof_array - 1] == '\0');