mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-22 23:01:17 +08:00
final.c (output_addr_const): Handle case where ASM_OPEN_PAREN and ASM_CLOSE_PAREN are empty strings.
* final.c (output_addr_const): Handle case where ASM_OPEN_PAREN and ASM_CLOSE_PAREN are empty strings. From-SVN: r28833
This commit is contained in:
parent
d059a2395d
commit
b6c8689d9b
@ -1,3 +1,8 @@
|
||||
Tue Aug 24 20:49:47 1999 Art Haas <ahaas@neosoft.com>
|
||||
|
||||
* final.c (output_addr_const): Handle case where ASM_OPEN_PAREN
|
||||
and ASM_CLOSE_PAREN are empty strings.
|
||||
|
||||
Wed Aug 25 12:46:22 1999 Fred Fish <fnf@cygnus.com>
|
||||
Geoffrey Keating <geoffk@cygnus.com>
|
||||
|
||||
|
@ -3671,9 +3671,9 @@ output_addr_const (file, x)
|
||||
if (GET_CODE (XEXP (x, 1)) == CONST_INT
|
||||
&& INTVAL (XEXP (x, 1)) < 0)
|
||||
{
|
||||
fprintf (file, ASM_OPEN_PAREN);
|
||||
fprintf (file, "%s", ASM_OPEN_PAREN);
|
||||
output_addr_const (file, XEXP (x, 1));
|
||||
fprintf (file, ASM_CLOSE_PAREN);
|
||||
fprintf (file, "%s", ASM_CLOSE_PAREN);
|
||||
}
|
||||
else
|
||||
output_addr_const (file, XEXP (x, 1));
|
||||
|
Loading…
x
Reference in New Issue
Block a user