aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/pdp11/pdp11.c
diff options
context:
space:
mode:
authorPaul Koning <ni1d@arrl.net>2018-07-12 15:26:22 -0400
committerPaul Koning <pkoning@gcc.gnu.org>2018-07-12 15:26:22 -0400
commitf34756291a6848f8eb6028a7a92808369ae8771b (patch)
treec97b02ddb1e5516a1557ac0be063b5ec3ce7895d /gcc/config/pdp11/pdp11.c
parentf9adcdecb2035ff8eb1b55428a1392b7d90503cc (diff)
downloadgcc-f34756291a6848f8eb6028a7a92808369ae8771b.zip
gcc-f34756291a6848f8eb6028a7a92808369ae8771b.tar.gz
gcc-f34756291a6848f8eb6028a7a92808369ae8771b.tar.bz2
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
Diffstat (limited to 'gcc/config/pdp11/pdp11.c')
-rw-r--r--gcc/config/pdp11/pdp11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c
index 39081e3..834c4ea 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);