diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-07 13:26:49 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-07-07 13:26:49 +0000 |
commit | ec91253bc98862d0bca7b5a9e481dd52a6b45fda (patch) | |
tree | c404f9df73ea6755a59c562302553f7b13e58de8 /gcc/expr.h | |
parent | 05b1716f641576f8a060f89935c4bcfb56500195 (diff) | |
download | gcc-ec91253bc98862d0bca7b5a9e481dd52a6b45fda.tar.gz |
* expr.c (emit_queue): If emitting a SEQUENCE, set QUEUED_INSN
to the first insn of the sequence.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20997 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index 02d75bbf98e..a53a036a15a 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -30,7 +30,8 @@ Boston, MA 02111-1307, USA. */ /* The variable for which an increment is queued. */ #define QUEUED_VAR(P) XEXP (P, 0) /* If the increment has been emitted, this is the insn - that does the increment. It is zero before the increment is emitted. */ + that does the increment. It is zero before the increment is emitted. + If more than one insn is emitted, this is the first insn. */ #define QUEUED_INSN(P) XEXP (P, 1) /* If a pre-increment copy has been generated, this is the copy (it is a temporary reg). Zero if no copy made yet. */ |