This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH/committed] sim: cgen: constify mode_names
- From: Mike Frysinger <vapier at gentoo dot org>
- To: gdb-patches at sourceware dot org
- Date: Sat, 13 Aug 2016 22:38:16 -0700
- Subject: [PATCH/committed] sim: cgen: constify mode_names
- Authentication-results: sourceware.org; auth=none
---
sim/common/ChangeLog | 5 +++++
sim/common/cgen-types.h | 2 +-
sim/common/cgen-utils.c | 2 +-
3 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index 868553b0f1b0..e8da2b196c46 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,5 +1,10 @@
2016-08-13 Mike Frysinger <vapier@gentoo.org>
+ * cgen-types.h (mode_names): Mark const.
+ * cgen-utils.c (mode_names): Likewise.
+
+2016-08-13 Mike Frysinger <vapier@gentoo.org>
+
* cgen-defs.h (struct cgen_state): Delete argv and envp.
(STATE_ARGV, STATE_ENVP): Delete.
diff --git a/sim/common/cgen-types.h b/sim/common/cgen-types.h
index e71fb1b201fc..94d6933e4faa 100644
--- a/sim/common/cgen-types.h
+++ b/sim/common/cgen-types.h
@@ -56,7 +56,7 @@ typedef enum mode_type {
#define MAX_TARGET_MODES ((int) MODE_TARGET_MAX)
#define MAX_MODES ((int) MODE_MAX)
-extern const char *mode_names[];
+extern const char * const mode_names[];
#define MODE_NAME(m) (mode_names[m])
typedef void VOID;
diff --git a/sim/common/cgen-utils.c b/sim/common/cgen-utils.c
index d17fb42ce1c8..13de592cdf7f 100644
--- a/sim/common/cgen-utils.c
+++ b/sim/common/cgen-utils.c
@@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#define SEMOPS_DEFINE_INLINE
#include "cgen-ops.h"
-const char *mode_names[] = {
+const char * const mode_names[] = {
"VOID",
"BI",
"QI",
--
2.9.0