diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-29 22:02:42 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-29 22:02:42 +0000 |
commit | 19f8cf12632856375eb78283308e3851153f12a3 (patch) | |
tree | 3d6ee2684314a0d677dd16c920c827481f49242f /gcc/output.h | |
parent | 92f926fc774b538e6fe9ccdaa4ccc9764a1ccf78 (diff) | |
download | gcc-19f8cf12632856375eb78283308e3851153f12a3.tar.gz |
* final.c (current_output_insn): New.
(final_scan_insn): Set it.
* output.h: Declare it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34258 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/output.h b/gcc/output.h index ad78d23d1ab..2446de2f800 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -444,9 +444,11 @@ extern FILE *rtl_dump_file; #endif /* Nonnull if the insn currently being emitted was a COND_EXEC pattern. */ - extern struct rtx_def *current_insn_predicate; +/* Last insn processed by final_scan_insn. */ +extern struct rtx_def *current_output_insn; + /* Decide whether DECL needs to be in a writable section. RELOC is the same as for SELECT_SECTION. */ |