diff options
| author | chandde <chandde@microsoft.com> | 2019-05-17 20:45:25 -0700 |
|---|---|---|
| committer | chandde <chandde@microsoft.com> | 2019-05-17 20:45:25 -0700 |
| commit | 70f78b3f8cd1a1cc7324bbae6b559315e423b2af (patch) | |
| tree | 1b2b7e1879190dd521da04501928164559467175 /src/libtest | |
| parent | ba3785ec0a959b074450686dca7bb16182cf8d1a (diff) | |
| download | rust-70f78b3f8cd1a1cc7324bbae6b559315e423b2af.tar.gz rust-70f78b3f8cd1a1cc7324bbae6b559315e423b2af.zip | |
optimize the arm64 OR arm32 check
Diffstat (limited to 'src/libtest')
| -rw-r--r-- | src/libtest/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 765ee12a1d6..b64973573c0 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -42,7 +42,7 @@ use term; // libtest won't be fully functional on these platforms. // // See also: https://github.com/rust-lang/rust/issues/54190#issuecomment-422904437 -#[cfg(not(any(all(windows, target_arch = "aarch64"), all(windows, target_arch = "arm"))))] +#[cfg(not(all(windows, any(target_arch = "aarch64", target_arch = "arm"))))] extern crate panic_unwind; pub use self::ColorConfig::*; |
