------- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-12
05:33 -------
The bug is a target bug as if this is wrong the bug is in ia64_assemble_integer:
/* Target hook for assembling integer objects. Handle word-sized
aligned objects and detect the cases when @fptr is needed. */
static bool
ia64_assemble_integer (rtx x, unsigned int size, int aligned_p)
{
if (size == POINTER_SIZE / BITS_PER_UNIT
&& aligned_p <--- here,
aligned_p is false for this case
&& !(TARGET_NO_PIC || TARGET_AUTO_PIC)
&& GET_CODE (x) == SYMBOL_REF
&& SYMBOL_REF_FUNCTION_P (x))
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2004-11-12 05:33:30
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18443