Commit 21956c07 by Bernd Schmidt Committed by Bernd Schmidt

bfin.h (ASM_OUTPUT_ALIGN): Gas now emulates the behavior of the native assembler in VDSP.

	* config/bfin/bfin.h (ASM_OUTPUT_ALIGN): Gas now emulates the
	behavior of the native assembler in VDSP. So change accordingly.

From-SVN: r100753
parent 5fcead21
......@@ -12,6 +12,10 @@
(def_builtin): New macro.
(TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN): Define.
From Jie Zhang <jie.zhang@analog.com>
* config/bfin/bfin.h (ASM_OUTPUT_ALIGN): Gas now emulates the
behavior of the native assembler in VDSP. So change accordingly.
2005-06-08 Sebastian Pop <pop@cri.ensmp.fr>
* tree-data-ref.c (compute_estimated_nb_iterations,
......
......@@ -1106,8 +1106,9 @@ do { char __buf[256]; \
} while (0)
#define ASM_OUTPUT_ALIGN(FILE,LOG) \
do { \
fprintf (FILE, ".align %d\n", LOG); \
do { \
if ((LOG) != 0) \
fprintf (FILE, "\t.align %d\n", 1 << (LOG)); \
} while (0)
#define ASM_OUTPUT_SKIP(FILE,SIZE) \
......
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