From 2f6178c175ba113600c532b8fc84e8d54beddb78 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 9 Aug 2005 15:47:46 +0000 Subject: PR 1070 * macro.c (getstring): Do not treat round parentheses exactly the same as angle brackets - the parentheses need to be preserved and passed on to the macro processing code. --- gas/macro.c | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) (limited to 'gas/macro.c') diff --git a/gas/macro.c b/gas/macro.c index fbe2666..eab3e66 100644 --- a/gas/macro.c +++ b/gas/macro.c @@ -310,12 +310,11 @@ getstring (int idx, sb *in, sb *acc) || (in->ptr[idx] == '<' && (macro_alternate || macro_mri)) || (in->ptr[idx] == '\'' && macro_alternate))) { - if (in->ptr[idx] == '<' - || in->ptr[idx] == '(') + if (in->ptr[idx] == '<') { int nest = 0; - char start_char = in->ptr[idx]; - char end_char = in->ptr[idx] == '<' ? '>' : ')'; + char start_char = '>'; + char end_char = '>'; idx++; while ((in->ptr[idx] != end_char || nest) @@ -337,6 +336,28 @@ getstring (int idx, sb *in, sb *acc) } idx++; } + else if (in->ptr[idx] == '(') + { + int nest = 0; + char c; + + do + { + c = in->ptr[idx]; + + if (c == '!') + c = in->ptr[++idx]; + else if (c == ')') + nest--; + else if (c == '(') + nest++; + + sb_add_char (acc, c); + idx++; + } + while ((c != ')' || nest) + && idx < in->len); + } else if (in->ptr[idx] == '"' || in->ptr[idx] == '\'') { char tchar = in->ptr[idx]; @@ -389,7 +410,7 @@ getstring (int idx, sb *in, sb *acc) 'Bxyx -> return 'Bxyza % -> return string of decimal value of "string" -> return string - (string) -> return string + (string) -> return (string-including-whitespaces) xyx -> return xyz. */ static int -- cgit v1.1