diff options
author | Alan Modra <amodra@gmail.com> | 2002-12-02 21:51:52 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-12-02 21:51:52 +0000 |
commit | 4fdf0a751a935351f70e4167c48fe10529a8c287 (patch) | |
tree | 118726d23660a372a71d85fd3111a5d2df8bf5fe /include/opcode/cgen.h | |
parent | 23b7d5f34edbf6daa22611107c6ad9eb73502b0c (diff) | |
download | gdb-4fdf0a751a935351f70e4167c48fe10529a8c287.zip gdb-4fdf0a751a935351f70e4167c48fe10529a8c287.tar.gz gdb-4fdf0a751a935351f70e4167c48fe10529a8c287.tar.bz2 |
* cgen.h (struct cgen_maybe_multi_ifield): Add "const PTR p" to union.
Constify "leaf" and "multi".
Diffstat (limited to 'include/opcode/cgen.h')
-rw-r--r-- | include/opcode/cgen.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/opcode/cgen.h b/include/opcode/cgen.h index 8947798..76a0af4 100644 --- a/include/opcode/cgen.h +++ b/include/opcode/cgen.h @@ -1,6 +1,7 @@ /* Header file for targets using CGEN: Cpu tools GENerator. -Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. +Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 +Free Software Foundation, Inc. This file is part of GDB, the GNU debugger, and the GNU Binutils. @@ -620,8 +621,9 @@ typedef struct cgen_maybe_multi_ifield n: indexed by array of more cgen_maybe_multi_ifields. */ union { - struct cgen_maybe_multi_ifield * multi; - struct cgen_ifld * leaf; + const PTR p; + const struct cgen_maybe_multi_ifield * multi; + const struct cgen_ifld * leaf; } val; } CGEN_MAYBE_MULTI_IFLD; |