comparison gcc/config/microblaze/microblaze.h @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* Definitions of target machine for GNU compiler for Xilinx MicroBlaze. 1 /* Definitions of target machine for GNU compiler for Xilinx MicroBlaze.
2 Copyright (C) 2009-2018 Free Software Foundation, Inc. 2 Copyright (C) 2009-2020 Free Software Foundation, Inc.
3 3
4 Contributed by Michael Eager <eager@eagercon.com>. 4 Contributed by Michael Eager <eager@eagercon.com>.
5 5
6 This file is part of GCC. 6 This file is part of GCC.
7 7
693 693
694 #define ASM_OUTPUT_ALIGN(STREAM,LOG) \ 694 #define ASM_OUTPUT_ALIGN(STREAM,LOG) \
695 fprintf (STREAM, "\t.align\t%d\n", (LOG)) 695 fprintf (STREAM, "\t.align\t%d\n", (LOG))
696 696
697 #define ASM_OUTPUT_SKIP(STREAM,SIZE) \ 697 #define ASM_OUTPUT_SKIP(STREAM,SIZE) \
698 fprintf (STREAM, "\t.space\t%lu\n", (SIZE)) 698 fprintf (STREAM, "\t.space\t" HOST_WIDE_INT_PRINT_UNSIGNED "\n", (SIZE))
699 699
700 #define ASCII_DATA_ASM_OP "\t.ascii\t" 700 #define ASCII_DATA_ASM_OP "\t.ascii\t"
701 #define STRING_ASM_OP "\t.asciz\t" 701 #define STRING_ASM_OP "\t.asciz\t"
702 702
703 #undef TARGET_ASM_OUTPUT_IDENT 703 #undef TARGET_ASM_OUTPUT_IDENT