add simple section attribute support for nu64 target

This commit is contained in:
Ethan Roseman 2021-07-15 19:28:17 +09:00
parent b542c63fba
commit 550edd0263

View File

@ -130,3 +130,7 @@ sdata_section () \
%(long_max_spec) \
%(subtarget_cpp_spec) "
#define ASM_OUTPUT_SECTION_NAME(FILE, DECL, NAME, RELOC)\
do { \
fprintf (FILE, "\t.section %s\n", NAME); \
} while (0)