diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-02-06 03:40:46 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-02-06 03:40:46 +0000 |
commit | c69916605c40755b50a2b6db59a1963093236f04 (patch) | |
tree | eeea9d658a7f6cacbf960eeccca8c5075429a00a /gcc/c-pragma.c | |
parent | 79f4e1c0af29778f98c6d52654983f869b887d5b (diff) | |
download | gcc-c69916605c40755b50a2b6db59a1963093236f04.zip gcc-c69916605c40755b50a2b6db59a1963093236f04.tar.gz gcc-c69916605c40755b50a2b6db59a1963093236f04.tar.bz2 |
Makefile.in (c-common.o): Depend on $(EXPR_H).
* Makefile.in (c-common.o): Depend on $(EXPR_H).
* c-common.c: Include expr.h.
* c-pragma.c (mark_align_stack): Add prototype.
* caller-save.c (add_stored_regs): Likewise.
* combine.c (record_promoted_value): Likewise.
* i386.c (ix86_sched_reorder_pentium, ix86_sched_reorder_ppro):
Likewise.
* cppinit.c (new_pending_define): Likewise.
* cpplib.c (skip_block_comment, skip_line_comment): Likewise.
* dwarf2out.c (save_rtx, splice_child_die, reverse_die_lists,
AT_class, AT_flag, AT_int, AT_unsigned, AT_string, AT_ref, AT_loc,
AT_addr, AT_lbl, get_AT_ref, free_AT, free_die, local_scope_p,
class_scope_p): Likewise.
* dwarf2out.h (dwarf2out_set_demangle_name_func,
dwarf2out_add_library_unit_info): Likewise.
* ggc.h (ggc_page_print_statistics): Likewise.
* haifa-sched.c (propagate_deps): Likewise.
* reg-stack.c (next_flags_user, record_label_references): Likewise.
* rtl.h (set_stack_check_libfunc): Likewise.
* toplev.h (set_fatal_function): Likewise.
* toplev.c (set_fatal_function): Delete prototype.
* diagnostic.c: Deconstify functions returning malloc'ed ptrs.
From-SVN: r31810
Diffstat (limited to 'gcc/c-pragma.c')
-rw-r--r-- | gcc/c-pragma.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c index 2adfcc7..618a0d6 100644 --- a/gcc/c-pragma.c +++ b/gcc/c-pragma.c @@ -60,6 +60,9 @@ static int default_alignment; static int push_alignment PARAMS ((int, tree)); static int pop_alignment PARAMS ((tree)); +#ifdef HANDLE_PRAGMA_PACK_PUSH_POP +static void mark_align_stack PARAMS ((void *)); +#endif /* Push an alignment value onto the stack. */ static int |