re PR target/63890 (Compiling trivial program with -O -p leads to misaligned stack)

PR target/63890
	* config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
	and TARGET_MACHO.

	* tree-vrp.c (register_edge_assert_for_2): For NAME != CST1

From-SVN: r234545
This commit is contained in:
Mike Stump 2016-03-30 03:57:30 +00:00 committed by Jeff Law
parent d014a712e0
commit ff734e26c2
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2016-03-30 Mike Stump <mrs@gcc.gnu.org>
PR target/63890
* config/i386/i386.h (ACCUMULATE_OUTGOING_ARGS): Use when profiling
and TARGET_MACHO.
2016-03-30 Patrick Palka <ppalka@gcc.gnu.org>
PR tree-optimization/59124

View File

@ -1638,7 +1638,8 @@ enum reg_class
#define ACCUMULATE_OUTGOING_ARGS \
((TARGET_ACCUMULATE_OUTGOING_ARGS && optimize_function_for_speed_p (cfun)) \
|| TARGET_STACK_PROBE || TARGET_64BIT_MS_ABI)
|| TARGET_STACK_PROBE || TARGET_64BIT_MS_ABI \
|| (TARGET_MACHO && crtl->profile))
/* If defined, a C expression whose value is nonzero when we want to use PUSH
instructions to pass outgoing arguments. */