diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2018-07-30 12:51:42 +0000 |
---|---|---|
committer | Christophe Lyon <clyon@gcc.gnu.org> | 2018-07-30 14:51:42 +0200 |
commit | b74159752d6c1f955660e829a17e1aad1cead348 (patch) | |
tree | 8e05938ac2f6b3ecad06e1c5315de3b08fefe571 | |
parent | 4cc035143dba51e38b35ffa27dbafdb07fe82e71 (diff) | |
download | gcc-b74159752d6c1f955660e829a17e1aad1cead348.zip gcc-b74159752d6c1f955660e829a17e1aad1cead348.tar.gz gcc-b74159752d6c1f955660e829a17e1aad1cead348.tar.bz2 |
[ARM] libgcc: Fix comment for code working on architectures >= 4.
2018-07-30 Christophe Lyon <christophe.lyon@linaro.org>
* config/arm/ieee754-df.S: Fix comment for code working on
architectures >= 4.
* config/arm/ieee754-sf.S: Likewise.
From-SVN: r263066
-rw-r--r-- | libgcc/ChangeLog | 6 | ||||
-rw-r--r-- | libgcc/config/arm/ieee754-df.S | 2 | ||||
-rw-r--r-- | libgcc/config/arm/ieee754-sf.S | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index e0db8d1..b8f85b6 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,9 @@ +2018-07-30 Christophe Lyon <christophe.lyon@linaro.org> + + * config/arm/ieee754-df.S: Fix comment for code working on + architectures >= 4. + * config/arm/ieee754-sf.S: Likewise. + 2018-07-27 H.J. Lu <hongjiu.lu@intel.com> PR libgcc/85334 diff --git a/libgcc/config/arm/ieee754-df.S b/libgcc/config/arm/ieee754-df.S index 8741aa9..7f2afb2 100644 --- a/libgcc/config/arm/ieee754-df.S +++ b/libgcc/config/arm/ieee754-df.S @@ -657,7 +657,7 @@ ARM_FUNC_ALIAS aeabi_dmul muldf3 beq LSYM(Lml_1) @ Here is the actual multiplication. - @ This code works on architecture versions > 4 + @ This code works on architecture versions >= 4 umull ip, lr, xl, yl mov r5, #0 umlal lr, r5, xh, yl diff --git a/libgcc/config/arm/ieee754-sf.S b/libgcc/config/arm/ieee754-sf.S index d80d5e9..e8ee76e 100644 --- a/libgcc/config/arm/ieee754-sf.S +++ b/libgcc/config/arm/ieee754-sf.S @@ -461,7 +461,7 @@ LSYM(Lml_x): orr r1, r3, r1, lsr #5 @ The actual multiplication. - @ This code works on architecture versions > 4 + @ This code works on architecture versions >= 4 umull r3, r1, r0, r1 @ Put final sign in r0. |