diff options
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 99e4ee3eac6..99d549c328a 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -180,20 +180,6 @@ struct GTY(()) cgraph_clone_info bitmap combined_args_to_skip; }; -enum node_frequency { - /* This function most likely won't be executed at all. - (set only when profile feedback is available or via function attribute). */ - NODE_FREQUENCY_UNLIKELY_EXECUTED, - /* For functions that are known to be executed once (i.e. constructors, destructors - and main function. */ - NODE_FREQUENCY_EXECUTED_ONCE, - /* The default value. */ - NODE_FREQUENCY_NORMAL, - /* Optimize this function hard - (set only when profile feedback is available or via function attribute). */ - NODE_FREQUENCY_HOT -}; - /* The cgraph data structure. Each function decl has assigned cgraph_node listing callees and callers. */ |