varasm.c (ecode_reg_name): Do nothing if the asmspec is empty.
2004-08-18 Andrew Pinski <apinski@apple.com> * varasm.c (ecode_reg_name): Do nothing if the asmspec is empty. From-SVN: r86237
This commit is contained in:
parent
8c78a388c1
commit
f17327513a
@ -1,3 +1,7 @@
|
||||
2004-08-18 Andrew Pinski <apinski@apple.com>
|
||||
|
||||
* varasm.c (ecode_reg_name): Do nothing if the asmspec is empty.
|
||||
|
||||
2004-08-18 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* config/arm/bpabi.c (__aeabi_ul2d): Give it default visibility.
|
||||
|
@ -779,7 +779,7 @@ set_user_assembler_name (tree decl, const char *name)
|
||||
int
|
||||
decode_reg_name (const char *asmspec)
|
||||
{
|
||||
if (asmspec != 0)
|
||||
if (asmspec != 0 && strlen (asmspec) != 0)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user