diff options
author | YunQiang Su <syq@gcc.gnu.org> | 2024-08-23 23:46:16 +0800 |
---|---|---|
committer | YunQiang Su <syq@gcc.gnu.org> | 2024-08-27 08:21:03 +0800 |
commit | 9522fc8bb7812f2ad50eb038e0938bfd958e730f (patch) | |
tree | 4a8f848d265a49ecfb116bff39294fe91bff0190 /libgcc | |
parent | 5031df5d1f4954304c618efd2de029edc6b3699f (diff) | |
download | gcc-9522fc8bb7812f2ad50eb038e0938bfd958e730f.zip gcc-9522fc8bb7812f2ad50eb038e0938bfd958e730f.tar.gz gcc-9522fc8bb7812f2ad50eb038e0938bfd958e730f.tar.bz2 |
MIPS: Include missing mips16.S in libgcc/lib1funcs.S
mips16.S was missing since
commit 29b74545531f6afbee9fc38c267524326dbfbedf
Date: Thu Jun 1 10:14:24 2023 +0800
MIPS: Add speculation_barrier support
Without mips16.S included, some symbols will miss for mips16, and
so some software will fail to build.
libgcc/ChangeLog:
* config/mips/lib1funcs.S: Includes mips16.S.
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/config/mips/lib1funcs.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgcc/config/mips/lib1funcs.S b/libgcc/config/mips/lib1funcs.S index fa8114b..324a84e 100644 --- a/libgcc/config/mips/lib1funcs.S +++ b/libgcc/config/mips/lib1funcs.S @@ -19,7 +19,7 @@ a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see <http://www.gnu.org/licenses/>. */ -//#include "mips16.S" +#include "mips16.S" #ifdef L_speculation_barrier |