Revisão | a18de447bd52cf5fac32c60179167805336ab858 (tree) |
---|---|
Hora | 2019-03-26 22:56:07 |
Autor | Yoshinori Sato <yo-satoh@sios...> |
Commiter | Yoshinori Sato |
fix warning
@@ -75,11 +75,11 @@ | ||
75 | 75 | |
76 | 76 | #undef BSS_SECTION_ASM_OP |
77 | 77 | #define BSS_SECTION_ASM_OP \ |
78 | - "\t.section .bss,\"w\",@nobits\n\t.p2align 2" | |
78 | + "\t.section .bss\n\t.p2align 2" | |
79 | 79 | |
80 | 80 | #undef SBSS_SECTION_ASM_OP |
81 | 81 | #define SBSS_SECTION_ASM_OP \ |
82 | - "\t.section .bss2,\"w\",@nobits\n\t.p2align 1" | |
82 | + "\t.section .bss2\n\t.p2align 1" | |
83 | 83 | |
84 | 84 | /* The following definitions are conditional depending upon whether the |
85 | 85 | compiler is being built or crtstuff.c is being compiled by the built |
@@ -184,7 +184,7 @@ | ||
184 | 184 | { \ |
185 | 185 | fprintf ((FILE), "%s", COMMON_ASM_OP); \ |
186 | 186 | assemble_name ((FILE), (NAME)); \ |
187 | - fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \ | |
187 | + fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED ",%u\n", \ | |
188 | 188 | (SIZE), (ALIGN) / BITS_PER_UNIT); \ |
189 | 189 | } \ |
190 | 190 | while (0) |