From f34756291a6848f8eb6028a7a92808369ae8771b Mon Sep 17 00:00:00 2001 From: Paul Koning Date: Thu, 12 Jul 2018 15:26:22 -0400 Subject: [PATCH] pdp11.c (pdp11_output_def): Fix typo in .set directive. * config/pdp11/pdp11.c (pdp11_output_def): Fix typo in .set directive. From-SVN: r262604 --- gcc/ChangeLog | 5 +++++ gcc/config/pdp11/pdp11.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3bc1f902ccb..05b7ffbd392 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-07-12 Paul Koning + + * config/pdp11/pdp11.c (pdp11_output_def): Fix typo in .set + directive. + 2018-07-12 Paul Koning * doc/rtl.texi (REG_NONNEG): Remove decrement and branch until diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c index 39081e3fb6d..834c4ea7518 100644 --- a/gcc/config/pdp11/pdp11.c +++ b/gcc/config/pdp11/pdp11.c @@ -2437,7 +2437,7 @@ pdp11_output_def (FILE *file, const char *label1, const char *label2) } else { - fputs (".set", file); + fputs ("\t.set\t", file); assemble_name (file, label1); putc (',', file); assemble_name (file, label2); -- 2.30.2