1 | //! Minimal miri support. |
---|---|
2 | //! |
3 | //! Miri is an interpreter, and though it tries to emulate the target CPU |
4 | //! it does not support any target features. |
5 | |
6 | #[macro_export] |
7 | #[doc(hidden)] |
8 | macro_rules! __unless_target_features { |
9 | ($($tf:tt),+ => $body:expr ) => { |
10 | false |
11 | }; |
12 | } |
13 | |
14 | #[macro_export] |
15 | #[doc(hidden)] |
16 | macro_rules! __detect_target_features { |
17 | ($($tf:tt),+) => { |
18 | false |
19 | }; |
20 | } |
21 |