Sanitize RISC-V GAS help text, documentation
authorPalmer Dabbelt <palmer@dabbelt.com>
Tue, 21 Mar 2017 15:36:44 +0000 (08:36 -0700)
committerPalmer Dabbelt <palmer@dabbelt.com>
Wed, 22 Mar 2017 22:46:52 +0000 (15:46 -0700)
It looks like I missed the GAS help text when going through all the
documentation last time, so it printed some of the old-format (never
upstream) arguments.  I fixed this, and when I went to check doc/ I
noticed it was missing the '-fpic'/'-fno-pic' options.

gas/ChangeLog
gas/config/tc-riscv.c
gas/doc/c-riscv.texi

index 75f6adca0b7d1361349f932c2160fc0dba77edc9..5fda819abcc8c3edf80e533f5cdec55eb596820b 100644 (file)
@@ -1,3 +1,10 @@
+2017-03-21  Palmer Dabbbelt  <palmer@dabbelt.com>
+
+       * config/tc-riscv.c (md_show_usage): Remode defuct -m32, -m64,
+       -msoft-float, -mhard-float, -mno-rvc, and -mrvc options; and don't
+       print an invalid default ISA string.
+       * doc/c-riscv.texi (OPTIONS): Add -fpic and -fno-pic options.
+
 2017-03-22  Max Filippov  <jcmvbkbc@gmail.com>
 
        * config/tc-xtensa.c (xtensa_relax_frag): Change fx_size of the
index ff6d73724f63c675cfe7673ed9fc57fa5934e097..68b28f7525e47bb79f904d6b56c33d0212316ab8 100644 (file)
@@ -2475,15 +2475,10 @@ md_show_usage (FILE *stream)
 {
   fprintf (stream, _("\
 RISC-V options:\n\
-  -m32           assemble RV32 code\n\
-  -m64           assemble RV64 code (default)\n\
   -fpic          generate position-independent code\n\
   -fno-pic       don't generate position-independent code (default)\n\
-  -msoft-float   don't use F registers for floating-point values\n\
-  -mhard-float   use F registers for floating-point values (default)\n\
-  -mno-rvc       disable the C extension for compressed instructions (default)\n\
-  -mrvc          enable the C extension for compressed instructions\n\
-  -march=ISA     set the RISC-V architecture, RV64IMAFD by default\n\
+  -march=ISA     set the RISC-V architecture\n\
+  -mabi=ABI      set the RISC-V ABI\n\
 "));
 }
 
index 8915db4c59c539308281a2e84f3960b809b09f31..01b99312d3c235d607691548fca3807018341263 100644 (file)
@@ -26,6 +26,14 @@ The following table lists all available RISC-V specific options
 @c man begin OPTIONS
 @table @gcctabopt
 
+@cindex @samp{-fpic} option, RISC-V
+@item -fpic
+Generate position-independent code
+
+@cindex @samp{-fno-pic} option, RISC-V
+@item -fno-pic
+Don't generate position-independent code (default)
+
 @cindex @samp{-march=ISA} option, RISC-V
 @item -march=ISA
 Select the base isa, as specified by ISA.  For example -march=rv32ima.
This page took 0.030799 seconds and 4 git commands to generate.