diff options
author | Richard Henderson <rth@cygnus.com> | 1999-10-14 04:01:59 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-10-14 04:01:59 -0700 |
commit | 476a33f4146f5304cc1a9a9b6587d2ba3600b0a6 (patch) | |
tree | 93ff3c121a9c61af22023f2e1de6a2b270f09940 /gcc | |
parent | e7bba992a94b62c152798dcfcde52b1f9b442398 (diff) | |
download | gcc-476a33f4146f5304cc1a9a9b6587d2ba3600b0a6.zip gcc-476a33f4146f5304cc1a9a9b6587d2ba3600b0a6.tar.gz gcc-476a33f4146f5304cc1a9a9b6587d2ba3600b0a6.tar.bz2 |
genrecog.c (validate_pattern): Condense the destination non-lvalue message.
* genrecog.c (validate_pattern): Condense the destination
non-lvalue message.
From-SVN: r29974
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/genrecog.c | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5914e7a..f20df33 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 14 04:00:40 1999 Richard Henderson <rth@cygnus.com> + + * genrecog.c (validate_pattern): Condense the destination + non-lvalue message. + Thu Oct 14 03:23:08 1999 Richard Henderson <rth@cygnus.com> * alpha.md (call-1): Supply missing mode for operator. diff --git a/gcc/genrecog.c b/gcc/genrecog.c index 3636215..6e1af3a 100644 --- a/gcc/genrecog.c +++ b/gcc/genrecog.c @@ -509,10 +509,8 @@ validate_pattern (pattern, insn, set_dest) && allows_non_lvalue) { message_with_line (pattern_lineno, - "warning: `%s' allows non-lvalue,", - pred_name); - message_with_line (pattern_lineno, - " and used as destination of a set"); + "warning: destination operand 0 allows non-lvalue", + XINT (pattern, 0)); } /* A modeless MATCH_OPERAND can be handy when we can |