diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-02-19 19:30:59 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-02-19 19:30:59 +0000 |
commit | a94d5170f8f31865c547a3e73690a6dd1beb9600 (patch) | |
tree | 0a0f022eac31ba087e201efa7cbf2a7d42cb51e3 | |
parent | f1c4b346ea2f42245bd6f45d5b2d274fc68224e3 (diff) | |
download | gcc-a94d5170f8f31865c547a3e73690a6dd1beb9600.zip gcc-a94d5170f8f31865c547a3e73690a6dd1beb9600.tar.gz gcc-a94d5170f8f31865c547a3e73690a6dd1beb9600.tar.bz2 |
* config/gcn/gcn.c (print_operand): Fix typo.
From-SVN: r269028
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/gcn/gcn.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 58630f7..4cd8ad6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-02-19 Jonathan Wakely <jwakely@redhat.com> + + * config/gcn/gcn.c (print_operand): Fix typo. + 2019-02-19 H.J. Lu <hongjiu.lu@intel.com> PR target/89397 diff --git a/gcc/config/gcn/gcn.c b/gcc/config/gcn/gcn.c index bd8ea55..1dd2ff2 100644 --- a/gcc/config/gcn/gcn.c +++ b/gcc/config/gcn/gcn.c @@ -5946,7 +5946,7 @@ print_operand (FILE *file, rtx x, int code) if (x) print_operand (file, ix, code); else - output_operand_lossage ("invlaid fp constant"); + output_operand_lossage ("invalid fp constant"); return; break; } |