diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-08-26 20:04:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 20:04:01 +0000 |
commit | 76f89f0fc5cfeb58bb8120ee8d7afe459074e26e (patch) | |
tree | 55f0c12f2e4760c930968cfc91cca38de6ace7cf /gcc | |
parent | 732997e93ff29073ee57ae9dc954e7c74a15c9cc (diff) | |
parent | 8e9dcd47d3ea97bd4bea892ad4c968acf486676b (diff) | |
download | gcc-76f89f0fc5cfeb58bb8120ee8d7afe459074e26e.zip gcc-76f89f0fc5cfeb58bb8120ee8d7afe459074e26e.tar.gz gcc-76f89f0fc5cfeb58bb8120ee8d7afe459074e26e.tar.bz2 |
Merge #1512
1512: Add missing language selection for rs6000 r=philberty a=philberty
This is an attempt to fix the ppc64le build issues.
Co-authored-by: Philip Herron <philip.herron@embecosm.com>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000-logue.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000-logue.cc b/gcc/config/rs6000/rs6000-logue.cc index 59fe1c8..c19b4f5 100644 --- a/gcc/config/rs6000/rs6000-logue.cc +++ b/gcc/config/rs6000/rs6000-logue.cc @@ -5330,7 +5330,8 @@ rs6000_output_function_epilogue (FILE *file) || ! strcmp (language_string, "GNU GIMPLE") || ! strcmp (language_string, "GNU Go") || ! strcmp (language_string, "GNU D") - || ! strcmp (language_string, "libgccjit")) + || ! strcmp (language_string, "libgccjit") + || ! strcmp (language_string, "GNU Rust")) i = 0; else if (! strcmp (language_string, "GNU F77") || lang_GNU_Fortran ()) |