diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-07-14 06:50:20 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-07-14 06:50:20 -0400 |
commit | a1493f9fb4aa7b24d143c8c2d8f6df34c75c5e97 (patch) | |
tree | 5e32989a12d9ff783a42fba42349111faf3f5cb7 | |
parent | 67f0e2137661c300a965670d5b7368de82c52eb2 (diff) | |
download | gcc-a1493f9fb4aa7b24d143c8c2d8f6df34c75c5e97.zip gcc-a1493f9fb4aa7b24d143c8c2d8f6df34c75c5e97.tar.gz gcc-a1493f9fb4aa7b24d143c8c2d8f6df34c75c5e97.tar.bz2 |
(allocate_for_life_analysis): Add declaration.
(regno_uninitialized, regno_clobbered_at_setjmp): Likewise.
(dump_flow_info, flow_analysis): Likewise.
From-SVN: r14423
-rw-r--r-- | gcc/output.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/output.h b/gcc/output.h index 749043b..a7c9b1e 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -1,6 +1,6 @@ /* Declarations for insn-output.c. These functions are defined in recog.c, final.c, and varasm.c. - Copyright (C) 1987, 1991, 1994 Free Software Foundation, Inc. + Copyright (C) 1987, 1991, 1994, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -114,6 +114,13 @@ extern int only_leaf_regs_used PROTO((void)); /* Scan IN_RTX and its subexpressions, and renumber all regs into those available in leaf functions. */ extern void leaf_renumber_regs_insn PROTO((rtx)); + +/* Functions in flow.c */ +extern void allocate_for_life_analysis PROTO((void)); +extern int regno_uninitialized PROTO((int)); +extern int regno_clobbered_at_setjmp PROTO((int)); +extern void dump_flow_info STDIO_PROTO((FILE *)); +extern void flow_analysis STDIO_PROTO((rtx, int, FILE *)); #endif /* Functions in varasm.c. */ |