mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 14:59:39 +02:00
5eecb51ad72058746b6e2b0842f0bba544d073e4
aarch64_init_ls64_builtins_types currently creates an array with type uint64_t[8] and then sets the mode to V8DI. The problem here is if you used that array type before, you would get a mode of BLK. This causes an ICE in some cases, with the C++ front-end with -g, you would get "type variant differs by TYPE_MODE" and in some cases even without -g, "canonical types differ for identical types". The fix is to do build_distinct_type_copy of the array in aarch64_init_ls64_builtins_types before assigning the mode to that copy. We keep the same ls64 structures correct and user provided arrays are not influenced when "arm_neon.h" is included. Build and tested on aarch64-linux-gnu. PR target/124126 gcc/ChangeLog: * config/aarch64/aarch64-builtins.cc (aarch64_init_ls64_builtins_types): Copy the array type before setting the mode. gcc/testsuite/ChangeLog: * g++.target/aarch64/pr124126-1.C: New test. Signed-off-by: Andrew Pinski <andrew.pinski@oss.qualcomm.com>
…
…
…
…
…
…
…
…
…
…
…
…
…
This directory contains the GNU Compiler Collection (GCC). The GNU Compiler Collection is free software. See the files whose names start with COPYING for copying permission. The manuals, and some of the runtime libraries, are under different terms; see the individual source files for details. The directory INSTALL contains copies of the installation information as HTML and plain text. The source of this information is gcc/doc/install.texi. The installation information includes details of what is included in the GCC sources and what files GCC installs. See the file gcc/doc/gcc.texi (together with other files that it includes) for usage and porting information. An online readable version of the manual is in the files gcc/doc/gcc.info*. See http://gcc.gnu.org/bugs/ for how to report bugs usefully. Copyright years on GCC source files may be listed using range notation, e.g., 1987-2012, indicating that every year in the range, inclusive, is a copyrightable year that could otherwise be listed individually.
Description
Languages
C++
30.7%
C
30.2%
Ada
14.4%
D
6.1%
Go
5.7%
Other
12.4%