[Bug target/14557] va_list is automatically taken address-of when passed as argument

zack at codesourcery dot com gcc-bugzilla@gcc.gnu.org
Sat Mar 13 19:50:00 GMT 2004


------- Additional Comments From zack at codesourcery dot com  2004-03-13 19:50 -------
Subject: Re:  va_list is automatically taken address-of
 when passed as argument


&ap should always work; taking the address of an array produces a
pointer to the array, which has a different type but the same value as
the pointer to the first element that you get if you don't take the
address.  You have to write *ap in the callee, is all.

As far as I can see the original example is strictly conforming and
the warning should not be issued.

zw


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14557



More information about the Gcc-bugs mailing list