diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2020-03-15 18:32:56 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2020-03-18 23:55:51 +0100 |
commit | cb44ab4f5dc67d4c075be7b35f9cd620679a5ef8 (patch) | |
tree | 66df390eb59b9443c05e08277846c3de2aa9a7b9 /toolchain/gcc/patches/9.3.0/110-Fix-MIPS-PR-84790.patch | |
parent | db70077668e757a27f41d9cb3c84f28ea7d4c22e (diff) | |
download | upstream-cb44ab4f5dc67d4c075be7b35f9cd620679a5ef8.tar.gz upstream-cb44ab4f5dc67d4c075be7b35f9cd620679a5ef8.tar.bz2 upstream-cb44ab4f5dc67d4c075be7b35f9cd620679a5ef8.zip |
toolchain: Update GCC 9 to version 9.3.0
The removed patch is included in GCC 9.3.0.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'toolchain/gcc/patches/9.3.0/110-Fix-MIPS-PR-84790.patch')
-rw-r--r-- | toolchain/gcc/patches/9.3.0/110-Fix-MIPS-PR-84790.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/toolchain/gcc/patches/9.3.0/110-Fix-MIPS-PR-84790.patch b/toolchain/gcc/patches/9.3.0/110-Fix-MIPS-PR-84790.patch new file mode 100644 index 0000000000..c7e60e3157 --- /dev/null +++ b/toolchain/gcc/patches/9.3.0/110-Fix-MIPS-PR-84790.patch @@ -0,0 +1,20 @@ +Fix https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84790. +MIPS16 functions have a static assembler prologue which clobbers +registers v0 and v1. Add these register clobbers to function call +instructions. + +--- a/gcc/config/mips/mips.c ++++ b/gcc/config/mips/mips.c +@@ -3131,6 +3131,12 @@ mips_emit_call_insn (rtx pattern, rtx or + emit_insn (gen_update_got_version ()); + } + ++ if (TARGET_MIPS16 && TARGET_USE_GOT) ++ { ++ clobber_reg (&CALL_INSN_FUNCTION_USAGE (insn), MIPS16_PIC_TEMP); ++ clobber_reg (&CALL_INSN_FUNCTION_USAGE (insn), MIPS_PROLOGUE_TEMP (word_mode)); ++ } ++ + if (TARGET_MIPS16 + && TARGET_EXPLICIT_RELOCS + && TARGET_CALL_CLOBBERED_GP) |