Blame SOURCES/gcc48-rh1487434.patch

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