diff options
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r-- | gcc/gimple.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h index ca7fec6..d64c47a 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -3472,6 +3472,13 @@ gimple_call_alloca_for_var_p (gcall *s) return (s->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0; } +static inline bool +gimple_call_alloca_for_var_p (gimple *s) +{ + const gcall *gc = GIMPLE_CHECK2<gcall *> (s); + return (gc->subcode & GF_CALL_ALLOCA_FOR_VAR) != 0; +} + /* If BY_DESCRIPTOR_P is true, GIMPLE_CALL S is an indirect call for which pointers to nested function are descriptors instead of trampolines. */ |