From 426db4afda18e9974ace9a848b3fa42ffe7686a6 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Fri, 28 May 2021 17:12:33 +0200 Subject: [PATCH] Make 2 "invalid expression" messages more exolicit. --- assemble_aux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assemble_aux.c b/assemble_aux.c index 95b1db9..4c1f8bd 100644 --- a/assemble_aux.c +++ b/assemble_aux.c @@ -413,7 +413,7 @@ static void store_complex( text_complex_begin(&tx); /* Open complex expression */ if (!complex_tree(&tx, value)) { /* Translate */ - report(refstr, "Invalid expression\n"); + report(refstr, "Invalid expression (complex relocation)\n"); store_word(refstr, tr, size, 0); } else { list_word(refstr, DOT, 0, size, "C"); @@ -439,7 +439,7 @@ static void store_complex_displaced( text_complex_begin(&tx); if (!complex_tree(&tx, value)) { - report(refstr, "Invalid expression\n"); + report(refstr, "Invalid expression (complex displaced relocation)\n"); store_word(refstr, tr, size, 0); } else { list_word(refstr, DOT, 0, size, "C");