Commit d52c212f by Uros Bizjak

alpha.h (ALPHA_ROUND): Implement using ROUND_UP macro.

	* config/alpha/alpha.h (ALPHA_ROUND): Implement using ROUND_UP macro.

From-SVN: r228693
parent c70f0ca2
2015-10-11 Uros Bizjak <ubizjak@gmail.com>
* config/alpha/alpha.h (ALPHA_ROUND): Implement using ROUND_UP macro.
2015-10-11 Segher Boessenkool <segher@kernel.crashing.org> 2015-10-11 Segher Boessenkool <segher@kernel.crashing.org>
PR rtl-optimization/67864 PR rtl-optimization/67864
...@@ -615,7 +615,7 @@ extern int alpha_memory_latency; ...@@ -615,7 +615,7 @@ extern int alpha_memory_latency;
{ FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}} { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM}}
/* Round up to a multiple of 16 bytes. */ /* Round up to a multiple of 16 bytes. */
#define ALPHA_ROUND(X) (((X) + 15) & ~ 15) #define ALPHA_ROUND(X) ROUND_UP ((X), 16)
/* Define the offset between two registers, one to be eliminated, and the other /* Define the offset between two registers, one to be eliminated, and the other
its replacement, at the start of a routine. */ its replacement, at the start of a routine. */
......
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