diff options
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/function.h b/gcc/function.h index 32c9893..971ab66 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -262,9 +262,6 @@ struct GTY(()) function { /* Vector of function local variables, functions, types and constants. */ vec<tree, va_gc> *local_decls; - /* In a Cilk function, the VAR_DECL for the frame descriptor. */ - tree cilk_frame_decl; - /* For md files. */ /* tm.h can use this to store whatever it likes. */ @@ -323,12 +320,6 @@ struct GTY(()) function { either as a subroutine or builtin. */ unsigned int calls_alloca : 1; - /* This will indicate whether a function is a cilk function */ - unsigned int is_cilk_function : 1; - - /* Nonzero if this is a Cilk function that spawns. */ - unsigned int calls_cilk_spawn : 1; - /* Nonzero if function being compiled receives nonlocal gotos from nested functions. */ unsigned int has_nonlocal_label : 1; |