This is the mail archive of the gcc-help@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]

Re: parse arguments sequentially


ccroswhite@get2chip.com writes:
> I would like to find out if there is an option to force sequential
> across platforms.

There isn't.  Order of evaluation of function arguments is unspecified
in C.  Assign the argument values to temporary variables first, in
separate assignment statements, and then pass those variables to the
outer function.


paul


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