diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2023-06-01 11:30:10 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2023-06-01 12:01:09 +0100 |
commit | eeb92704967875411416b0b9508aa6f49e8192fd (patch) | |
tree | efeadedf01b072da480fe43d9c86979056d9e579 /gcc/doc/invoke.texi | |
parent | 2fbbaa77c8468ed2bdf2cfa1a5890991e4e98eef (diff) | |
download | gcc-eeb92704967875411416b0b9508aa6f49e8192fd.zip gcc-eeb92704967875411416b0b9508aa6f49e8192fd.tar.gz gcc-eeb92704967875411416b0b9508aa6f49e8192fd.tar.bz2 |
doc: Fix description of x86 -m32 option [PR109954]
This option does not imply -march=i386 so it's incorrect to say it
generates code that will run on "any i386 system".
gcc/ChangeLog:
PR target/109954
* doc/invoke.texi (x86 Options): Fix description of -m32 option.
Diffstat (limited to 'gcc/doc/invoke.texi')
-rw-r--r-- | gcc/doc/invoke.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 898a88c..ec71c2e 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -34091,7 +34091,7 @@ on x86-64 processors in 64-bit environments. Generate code for a 16-bit, 32-bit or 64-bit environment. The @option{-m32} option sets @code{int}, @code{long}, and pointer types to 32 bits, and -generates code that runs on any i386 system. +generates code that runs in 32-bit mode. The @option{-m64} option sets @code{int} to 32 bits and @code{long} and pointer types to 64 bits, and generates code for the x86-64 architecture. |