Commit 3c4afaa5 by Richard Kenner

(finish_decl): If asmspec_tree, clear DECL_BUILT_IN for function and

DECL_RTL always.

From-SVN: r7048
parent a28e3c7f
......@@ -3406,8 +3406,13 @@ finish_decl (decl, init, asmspec_tree)
int temporary = allocation_temporary_p ();
char *asmspec = 0;
/* If a name was specified, get the string. Then reset DECL_RTL
so that we will remake it with the new name. */
if (asmspec_tree)
{
asmspec = TREE_STRING_POINTER (asmspec_tree);
DECL_RTL (decl) = 0;
}
/* If `start_decl' didn't like having an initialization, ignore it now. */
......@@ -3527,6 +3532,11 @@ finish_decl (decl, init, asmspec_tree)
}
}
/* If this is a function and an assembler name is specified, it isn't
builtin any more. */
if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
DECL_BUILT_IN (decl) = 0;
/* Output the assembler code and/or RTL code for variables and functions,
unless the type is an undefined structure or union.
If not, it will get done when the type is completed. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment