Define ix86_args only if USED_FOR_TARGET isn't defined

* config/i386/i386.h (ix86_args): Define only if USED_FOR_TARGET
	isn't defined.

From-SVN: r196999
This commit is contained in:
H.J. Lu 2013-03-23 02:23:44 +00:00 committed by H.J. Lu
parent 1d96e67ed7
commit f91f7e7ff9
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2013-03-22 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.h (ix86_args): Define only if USED_FOR_TARGET
isn't defined.
2013-03-22 H.J. Lu <hongjiu.lu@intel.com>
PR target/56560

View File

@ -1474,6 +1474,7 @@ enum reg_class
/* 1 if N is a possible register number for function argument passing. */
#define FUNCTION_ARG_REGNO_P(N) ix86_function_arg_regno_p (N)
#ifndef USED_FOR_TARGET
/* Define a data type for recording info about an argument list
during the scan of that argument list. This data type should
hold all necessary information about the function itself
@ -1507,6 +1508,7 @@ typedef struct ix86_args {
/* Nonzero if it returns 256bit AVX modes. */
BOOL_BITFIELD callee_return_avx256_p : 1;
} CUMULATIVE_ARGS;
#endif
/* Initialize a variable CUM of type CUMULATIVE_ARGS
for a call to a function whose data type is FNTYPE.