Commit c3313412 by Steve Ellcey Committed by Steve Ellcey

ia64.c (ia64_promote_function_mode): Call default_promote_function_mode when not VMS.

2009-08-24  Steve Ellcey  <sje@cup.hp.com>

	* config/ia64/ia64.c (ia64_promote_function_mode): Call
	default_promote_function_mode when not VMS.

From-SVN: r151064
parent 783a452c
2009-08-24 Steve Ellcey <sje@cup.hp.com>
* config/ia64/ia64.c (ia64_promote_function_mode): Call
default_promote_function_mode when not VMS.
2009-08-24 Olivier Hainque <hainque@adacore.com>
* convert.c (convert_to_integer): Don't assume an input pointer is
......
......@@ -10676,13 +10676,14 @@ static enum machine_mode
ia64_promote_function_mode (const_tree type,
enum machine_mode mode,
int *punsignedp,
const_tree funtype ATTRIBUTE_UNUSED,
int for_return ATTRIBUTE_UNUSED)
const_tree funtype,
int for_return)
{
/* Special processing required for OpenVMS ... */
if (!TARGET_ABI_OPEN_VMS)
return mode;
return default_promote_function_mode(type, mode, punsignedp, funtype,
for_return);
/* HP OpenVMS Calling Standard dated June, 2004, that describes
HP OpenVMS I64 Version 8.2EFT,
......
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