103ae1
2016-05-04  Alan Modra  <amodra@gmail.com>
103ae1
103ae1
	* config/rs6000/rs6000.c (rs6000_elf_output_toc_section_asm_op):
103ae1
	Align .toc.
103ae1
103ae1
--- gcc/config/rs6000/rs6000.c
103ae1
+++ gcc/config/rs6000/rs6000.c
103ae1
@@ -31339,8 +31339,8 @@ rs6000_elf_output_toc_section_asm_op (const void *data ATTRIBUTE_UNUSED)
103ae1
     {
103ae1
       if (!toc_initialized)
103ae1
 	{
103ae1
-	  toc_initialized = 1;
103ae1
 	  fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
103ae1
+	  ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
103ae1
 	  (*targetm.asm_out.internal_label) (asm_out_file, "LCTOC", 0);
103ae1
 	  fprintf (asm_out_file, "\t.tc ");
103ae1
 	  ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1[TC],");
103ae1
@@ -31348,20 +31348,30 @@ rs6000_elf_output_toc_section_asm_op (const void *data ATTRIBUTE_UNUSED)
103ae1
 	  fprintf (asm_out_file, "\n");
103ae1
 
103ae1
 	  fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
103ae1
+	  ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
103ae1
 	  ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
103ae1
 	  fprintf (asm_out_file, " = .+32768\n");
103ae1
+	  toc_initialized = 1;
103ae1
 	}
103ae1
       else
103ae1
 	fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
103ae1
     }
103ae1
   else if ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
103ae1
 	   && !TARGET_RELOCATABLE)
103ae1
-    fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
103ae1
+    {
103ae1
+      fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
103ae1
+      if (!toc_initialized)
103ae1
+	{
103ae1
+	  ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
103ae1
+	  toc_initialized = 1;
103ae1
+	}
103ae1
+    }
103ae1
   else
103ae1
     {
103ae1
       fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
103ae1
       if (!toc_initialized)
103ae1
 	{
103ae1
+	  ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
103ae1
 	  ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
103ae1
 	  fprintf (asm_out_file, " = .+32768\n");
103ae1
 	  toc_initialized = 1;