diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-31 14:58:49 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-31 14:58:49 +0000 |
commit | 7857a7b7de4653975002fd7d1345990f4d68332e (patch) | |
tree | 935e97bf85492ea491a4ae45257e0ecd95234485 /gcc/cgraph.h | |
parent | f0e8bbbcddd0fce20aa5bd0143977680595d7c8d (diff) | |
download | gcc-7857a7b7de4653975002fd7d1345990f4d68332e.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174487 138bc75d-0d04-0410-961f-82ee72b054a4
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 8be0354c2e2..ded3aedbb0f 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; |