PR target/83013
* config/microblaze/microblaze.c (microblaze_asm_output_ident):
Use .pushsection/.popsection.
From-SVN: r256681
+2018-01-14 Nathan Rossi <nathan@nathanrossi.com>
+
+ PR target/83013
+ * config/microblaze/microblaze.c (microblaze_asm_output_ident):
+ Use .pushsection/.popsection.
+
2018-01-14 Martin Sebor <msebor@redhat.com>
PR c++/81327
else
section_asm_op = READONLY_DATA_SECTION_ASM_OP;
- buf = ACONCAT ((section_asm_op, "\n\t.ascii \"", string, "\\0\"\n", NULL));
+ buf = ACONCAT (("\t.pushsection", section_asm_op,
+ "\n\t.ascii \"", string, "\\0\"\n",
+ "\t.popsection\n", NULL));
symtab->finalize_toplevel_asm (build_string (strlen (buf), buf));
}