This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Bad code for ia64 with function pointer


Your program is broken.  You made assumptions about the form of a function
pointer which are wrong.

On IA-64, and some other targets, function pointers are represented
differently than pointers to objects.  On IA-64, a function pointer is a double
word descriptor that holds the function address and the function GP value.
Thus you can't get a valid function pointer by casting a char * pointer to a
function pointer type.

Jim


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]