Commit ff734e26 by Mike Stump Committed by Jeff Law

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
parent d014a712
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
......
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment