From f34996452b40eec6e088212502ef9e20f9cc7537 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Tue, 19 May 2015 00:50:17 +0200 Subject: [PATCH] Mark PSECT relocation also with a ' in the listing. --- assemble_aux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assemble_aux.c b/assemble_aux.c index 4e78d8a..b9b69a4 100644 --- a/assemble_aux.c +++ b/assemble_aux.c @@ -134,7 +134,7 @@ static int store_psect_displaced_offset_word( char *name) { change_dot(tr, size); - list_word(str, DOT, word, size, ""); + list_word(str, DOT, word, size, "'"); return text_psect_displaced_offset_word(tr, &DOT, size, word, name); } @@ -146,7 +146,7 @@ static int store_psect_offset_word( char *name) { change_dot(tr, size); - list_word(str, DOT, word, size, ""); + list_word(str, DOT, word, size, "'"); return text_psect_offset_word(tr, &DOT, size, word, name); }