Commit ef86d2ee by Weiwen Liu Committed by Richard Henderson

* alpha.c (vms_valid_decl_attribute_p): Move within #if OPEN_VMS.

From-SVN: r17279
parent 6c174fc0
Fri Jan 2 04:57:57 1998 Weiwen Liu <liu@hepmail.physics.yale.edu>
* alpha.c (vms_valid_decl_attribute_p): Move within #if OPEN_VMS.
Fri Jan 2 04:34:14 1998 Richard Henderson <rth@cygnus.com>
* c-decl.c (init_decl_processing): Provide proper fallback symbol
......
......@@ -3015,6 +3015,18 @@ output_epilog (file, size)
SYMBOL_REF_FLAG (XEXP (DECL_RTL (current_function_decl), 0)) = 1;
}
int
vms_valid_decl_attribute_p (decl, attributes, identifier, args)
tree decl;
tree attributes;
tree identifier;
tree args;
{
if (is_attribute_p ("overlaid", identifier))
return (args == NULL_TREE);
return 0;
}
#else /* !OPEN_VMS */
static int
......@@ -3048,18 +3060,6 @@ alpha_does_function_need_gp ()
return 0;
}
int
vms_valid_decl_attribute_p (decl, attributes, identifier, args)
tree decl;
tree attributes;
tree identifier;
tree args;
{
if (is_attribute_p ("overlaid", identifier))
return (args == NULL_TREE);
return 0;
}
void
output_prolog (file, size)
FILE *file;
......
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