diff options
Diffstat (limited to 'gcc/hard-reg-set.h')
-rw-r--r-- | gcc/hard-reg-set.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/hard-reg-set.h b/gcc/hard-reg-set.h index 09a09c550a6..b8ab3df7a15 100644 --- a/gcc/hard-reg-set.h +++ b/gcc/hard-reg-set.h @@ -1,5 +1,5 @@ /* Sets (bit vectors) of hard registers, and operations on them. - Copyright (C) 1987-2013 Free Software Foundation, Inc. + Copyright (C) 1987-2014 Free Software Foundation, Inc. This file is part of GCC @@ -488,7 +488,7 @@ hard_reg_set_empty_p (const HARD_REG_SET x) /* Iterator for hard register sets. */ -typedef struct +struct hard_reg_set_iterator { /* Pointer to the current element. */ HARD_REG_ELT_TYPE *pelt; @@ -503,7 +503,7 @@ typedef struct it is shifted right, so that the actual bit is always the least significant bit of ACTUAL. */ HARD_REG_ELT_TYPE bits; -} hard_reg_set_iterator; +}; #define HARD_REG_ELT_BITS UHOST_BITS_PER_WIDE_INT |