diff options
author | Andre Vieira <andre.simoesdiasvieira@arm.com> | 2020-01-07 14:11:57 +0000 |
---|---|---|
committer | Andre Vieira <avieira@gcc.gnu.org> | 2020-01-07 14:11:57 +0000 |
commit | 084a454e4e0e211d0fc0f42b25dd5880cde5c81a (patch) | |
tree | 017a361f321e6a1691138c588ff658fe88b4074f | |
parent | b46e3849d507b61b2537f48150864d218b31b550 (diff) | |
download | gcc-084a454e4e0e211d0fc0f42b25dd5880cde5c81a.zip gcc-084a454e4e0e211d0fc0f42b25dd5880cde5c81a.tar.gz gcc-084a454e4e0e211d0fc0f42b25dd5880cde5c81a.tar.bz2 |
[doc] Add missing documentation for existing target checks
gcc/ChangeLog:
2020-01-07 Andre Vieira <andre.simoesdiasvieira@arm.com>
* doc/sourcebuild.texi (arm_little_endian, arm_nothumb): Documented
existing target checks.
From-SVN: r279957
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/sourcebuild.texi | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f67644f..3609886 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2020-01-07 Andre Vieira <andre.simoesdiasvieira@arm.com> + + * doc/sourcebuild.texi (arm_little_endian, arm_nothumb): Documented + existing target checks. + 2020-01-07 Richard Biener <rguenther@suse.de> * doc/install.texi: Bump minimal supported MPC version. diff --git a/gcc/doc/sourcebuild.texi b/gcc/doc/sourcebuild.texi index 87d42e3..a214381 100644 --- a/gcc/doc/sourcebuild.texi +++ b/gcc/doc/sourcebuild.texi @@ -1721,6 +1721,9 @@ Target generates decimal floating point instructions with current options. @item arm32 ARM target generates 32-bit code. +@item arm_little_endian +ARM target that generates little-endian code. + @item arm_eabi ARM target adheres to the ABI for the ARM Architecture. @@ -1808,6 +1811,9 @@ ARM target generates Thumb-1 code for @code{-mthumb}. @item arm_thumb2_ok ARM target generates Thumb-2 code for @code{-mthumb}. +@item arm_nothumb +ARM target that is not using Thumb. + @item arm_vfp_ok ARM target supports @code{-mfpu=vfp -mfloat-abi=softfp}. Some multilibs may be incompatible with these options. |