rs6000 small data: add note on sdata2/r2
authorAlexandre Oliva <oliva@adacore.com>
Wed, 22 Aug 2018 03:48:00 +0000 (03:48 +0000)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Wed, 22 Aug 2018 03:48:00 +0000 (03:48 +0000)
for  gcc/ChangeLog

* config/rs6000/rs6000.c (SMALL_DATA_RELOC, SMALL_DATA_REG): Add
a comment about how uses of r2 for .sdata2 come about.

From-SVN: r263760

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index 6cff516..04542dc 100644 (file)
@@ -1,3 +1,8 @@
+2018-08-22  Alexandre Oliva <oliva@adacore.com>
+
+       * config/rs6000/rs6000.c (SMALL_DATA_RELOC, SMALL_DATA_REG): Add
+       a comment about how uses of r2 for .sdata2 come about.
+
 2018-08-22  Alexandre Oliva <aoliva@redhat.com>
 
        * tree-ssa-reassoc.c (is_reassociable_op): Fix cut&pasto.
index 97b922f..252d197 100644 (file)
@@ -20349,6 +20349,9 @@ rs6000_output_function_entry (FILE *file, const char *fname)
 /* Print an operand.  Recognize special options, documented below.  */
 
 #if TARGET_ELF
+/* Access to .sdata2 through r2 (see -msdata=eabi in invoke.texi) is
+   only introduced by the linker, when applying the sda21
+   relocation.  */
 #define SMALL_DATA_RELOC ((rs6000_sdata == SDATA_EABI) ? "sda21" : "sdarel")
 #define SMALL_DATA_REG ((rs6000_sdata == SDATA_EABI) ? 0 : 13)
 #else