diff options
author | Jan Hubicka <jh@suse.cz> | 2011-05-31 16:58:49 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2011-05-31 14:58:49 +0000 |
commit | 533c07c594cef102741325e09a6580094fa32cba (patch) | |
tree | 935e97bf85492ea491a4ae45257e0ecd95234485 /gcc/cgraph.h | |
parent | 2611db71ea2dda0b3c5fb32b2fc5778779a57fda (diff) | |
download | gcc-533c07c594cef102741325e09a6580094fa32cba.zip gcc-533c07c594cef102741325e09a6580094fa32cba.tar.gz gcc-533c07c594cef102741325e09a6580094fa32cba.tar.bz2 |
cgraph.h (cgraph_inline_failed_t): Give enum a name
* cgraph.h (cgraph_inline_failed_t): Give enum a name
* lto-cgraph.c (LDPR_NUM_KNOWN): New macro.
(LTO_cgraph_tags): Add LTO_cgraph_last_tag.
(lto_output_edge): Use output_enum and var_len_unsigned.
(lto_output_varpool_node): Likewise.
(input_overwrite_node): Do not take resolution parameter;
extract it from a bitpack.
(input_node): Do not read resolution; use input_enum and
var_len_unsigned.
(input_varpool_node): Likewise.
(input_edge): Likewise.
(input_cgraph_1): Likewise.
From-SVN: r174487
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 8be0354..ded3aed 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -304,7 +304,7 @@ typedef struct #define DEFCIFCODE(code, string) CIF_ ## code, /* Reasons for inlining failures. */ -typedef enum { +typedef enum cgraph_inline_failed_enum { #include "cif-code.def" CIF_N_REASONS } cgraph_inline_failed_t; |