diff options
author | Peter Bergner <bergner@linux.ibm.com> | 2024-02-09 10:51:30 -0600 |
---|---|---|
committer | Peter Bergner <bergner@linux.ibm.com> | 2024-02-09 10:52:23 -0600 |
commit | 4199cf1e152daab0460f08cc7dbd1f727ac3e4cc (patch) | |
tree | 4bb26d910924f99e0a2fef7cf065bbdc35d17fd3 /gas | |
parent | 590a4cb21e8e2883fcc8796eab20a110e77f9e2f (diff) | |
download | gdb-4199cf1e152daab0460f08cc7dbd1f727ac3e4cc.zip gdb-4199cf1e152daab0460f08cc7dbd1f727ac3e4cc.tar.gz gdb-4199cf1e152daab0460f08cc7dbd1f727ac3e4cc.tar.bz2 |
PowerPC: Add support for Power11 options
binutils/
* doc/binutils.texi (PowerPC -M option): Mention power11 and pwr11.
gas/
* config/tc-ppc.c: (md_show_usage): Mention -mpower11 and -mpwr11.
* doc/c-ppc.texi: Likewise.
opcodes/
* ppc-dis.c (ppc_opts): Add "power11" and "pwr11" entries.
(powerpc_init_dialect): Default to "power11".
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-ppc.c | 2 | ||||
-rw-r--r-- | gas/doc/c-ppc.texi | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 2e92d14..8c00d01 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -1392,6 +1392,8 @@ PowerPC options:\n")); fprintf (stream, _("\ -mpower10, -mpwr10 generate code for Power10 architecture\n")); fprintf (stream, _("\ +-mpower11, -mpwr11 generate code for Power11 architecture\n")); + fprintf (stream, _("\ -mlibresoc generate code for Libre-SOC architecture\n")); fprintf (stream, _("\ -mfuture generate code for 'future' architecture\n")); diff --git a/gas/doc/c-ppc.texi b/gas/doc/c-ppc.texi index 428492f..c8cabde 100644 --- a/gas/doc/c-ppc.texi +++ b/gas/doc/c-ppc.texi @@ -156,6 +156,9 @@ Generate code for Power9 architecture. @item -mpower10, -mpwr10 Generate code for Power10 architecture. +@item -mpower11, -mpwr11 +Generate code for Power11 architecture. + @item -mfuture Generate code for 'future' architecture. |