diff options
Diffstat (limited to 'gcc/gcse-common.h')
-rw-r--r-- | gcc/gcse-common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcse-common.h b/gcc/gcse-common.h index a6b1a0c3bde..43f762baa66 100644 --- a/gcc/gcse-common.h +++ b/gcc/gcse-common.h @@ -22,11 +22,11 @@ along with GCC; see the file COPYING3. If not see #define GCC_GCSE_COMMON_H typedef vec<rtx_insn *> vec_rtx_heap; -typedef struct modify_pair_s +struct modify_pair { rtx dest; /* A MEM. */ rtx dest_addr; /* The canonical address of `dest'. */ -} modify_pair; +}; typedef vec<modify_pair> vec_modify_pair_heap; |