diff options
| author | Antoni Boucher <bouanto@zoho.com> | 2024-02-15 18:12:42 -0400 |
|---|---|---|
| committer | Antoni Boucher <bouanto@zoho.com> | 2024-02-17 15:16:09 -0500 |
| commit | e116cb7811510936c4386322cc27255bc97f656a (patch) | |
| tree | 777d0bd8bd8cce95a5d96a17516ad4e4d463e103 /src | |
| parent | af289a5eacbdf531ae22c5e90be7c8c627b20a93 (diff) | |
| download | rust-e116cb7811510936c4386322cc27255bc97f656a.tar.gz rust-e116cb7811510936c4386322cc27255bc97f656a.zip | |
Fix to use the correct libgccjit for the CI where 128-bit integers are disabled
Diffstat (limited to 'src')
| -rw-r--r-- | src/declare.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declare.rs b/src/declare.rs index 5ed6739883d..72cba9fbba9 100644 --- a/src/declare.rs +++ b/src/declare.rs @@ -181,7 +181,8 @@ fn declare_raw_fn<'gcc>(cx: &CodegenCx<'gcc, '_>, name: &str, _callconv: () /*ll } // FIXME(antoyo): this is a hack because libgccjit currently only supports alpha, num and _. -// Unsupported characters: `$` and `.`. +// Unsupported characters: `$`, `.` and `*`. +// FIXME(antoyo): `*` might not be expected: https://github.com/rust-lang/rust/issues/116979#issuecomment-1840926865 #[cfg(not(feature="master"))] fn mangle_name(name: &str) -> String { name.replace(|char: char| { |
