diff options
| author | Thomas Eizinger <thomas@eizinger.io> | 2021-01-29 14:49:23 +1100 |
|---|---|---|
| committer | Thomas Eizinger <thomas@eizinger.io> | 2021-01-29 14:56:37 +1100 |
| commit | ff00ef4d6656af5708958dee3ca9ed1918648b6d (patch) | |
| tree | bb9b246ce84faf85832fa96dec94534f52dc694e | |
| parent | b05fd2a15de7c9e50110e9ed4c01f114be215739 (diff) | |
| download | rust-ff00ef4d6656af5708958dee3ca9ed1918648b6d.tar.gz rust-ff00ef4d6656af5708958dee3ca9ed1918648b6d.zip | |
Apply workaround from #72003 for #56935
Related: #72017.
| -rw-r--r-- | compiler/rustc_index/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/rustc_index/src/lib.rs b/compiler/rustc_index/src/lib.rs index eaef4c7b54a..995034e81da 100644 --- a/compiler/rustc_index/src/lib.rs +++ b/compiler/rustc_index/src/lib.rs @@ -8,3 +8,7 @@ pub mod bit_set; pub mod vec; + +// FIXME(#56935): Work around ICEs during cross-compilation. +#[allow(unused)] +extern crate rustc_macros; |
