aboutsummaryrefslogtreecommitdiff
path: root/libcpp/ChangeLog
diff options
context:
space:
mode:
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>2014-10-03 20:06:38 +0000
committerWilliam Schmidt <wschmidt@gcc.gnu.org>2014-10-03 20:06:38 +0000
commit0ccaaab0e31a3dd406dffb70f6e311b46e99ae6c (patch)
tree2cf47064ba3e0e7d55b6d9d03cbb18665094adac /libcpp/ChangeLog
parent3c9aabbde58e5c540b0718c0a585e3ca97910317 (diff)
downloadgcc-0ccaaab0e31a3dd406dffb70f6e311b46e99ae6c.zip
gcc-0ccaaab0e31a3dd406dffb70f6e311b46e99ae6c.tar.gz
gcc-0ccaaab0e31a3dd406dffb70f6e311b46e99ae6c.tar.bz2
lex.c (search_line_fast): Add new version to be used for Power8 and later targets when Altivec is enabled.
2014-10-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com> * lex.c (search_line_fast): Add new version to be used for Power8 and later targets when Altivec is enabled. Restrict the existing Altivec version to big-endian systems so that lvsr is not used on little endian, where it is deprecated. Remove LE-specific code from the now-BE-only version. From-SVN: r215873
Diffstat (limited to 'libcpp/ChangeLog')
-rw-r--r--libcpp/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog
index 3b23708..09304ef8 100644
--- a/libcpp/ChangeLog
+++ b/libcpp/ChangeLog
@@ -1,3 +1,11 @@
+2014-10-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
+
+ * lex.c (search_line_fast): Add new version to be used for Power8
+ and later targets when Altivec is enabled. Restrict the existing
+ Altivec version to big-endian systems so that lvsr is not used on
+ little endian, where it is deprecated. Remove LE-specific code
+ from the now-BE-only version.
+
2014-10-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
Jeff Law <law@redhat.com>