Commit f1419b42 by Richard Kenner Committed by Richard Kenner

* config/i386/i386.h (FUNCTION_BOUNDARY): Result is unsigned.

From-SVN: r41767
parent 6349ad24
Wed May 2 13:09:36 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* config/i386/i386.h (FUNCTION_BOUNDARY): Result is unsigned.
* function.c (fixup_var_regs_1, case SUBREG): Use promoted mode
for replacement.
......
......@@ -588,7 +588,9 @@ extern int ix86_arch;
/* Allocation boundary for the code of a function. */
#define FUNCTION_BOUNDARY \
(1 << ((ix86_align_funcs >= 0 ? ix86_align_funcs : -ix86_align_funcs) + 3))
((unsigned int) 1 << ((ix86_align_funcs >= 0 \
? ix86_align_funcs : -ix86_align_funcs) \
+ 3))
/* Alignment of field after `int : 0' in a structure. */
......
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