generated.rs 879 B

1234567891011121314151617181920212223242526272829303132333435
  1. #![feature(compiler_builtins_lib)]
  2. #![feature(i128_type)]
  3. #![feature(lang_items, core_float, core_float_bits)]
  4. #![allow(bad_style)]
  5. #![allow(unused_imports)]
  6. #![no_std]
  7. use core::num::Float;
  8. extern crate compiler_builtins;
  9. #[cfg(all(target_arch = "arm",
  10. not(any(target_env = "gnu", target_env = "musl")),
  11. target_os = "linux",
  12. test))]
  13. extern crate utest_cortex_m_qemu;
  14. #[cfg(all(target_arch = "arm",
  15. not(any(target_env = "gnu", target_env = "musl")),
  16. target_os = "linux",
  17. test))]
  18. #[macro_use]
  19. extern crate utest_macros;
  20. #[cfg(all(target_arch = "arm",
  21. not(any(target_env = "gnu", target_env = "musl")),
  22. target_os = "linux",
  23. test))]
  24. macro_rules! panic { // overrides `panic!`
  25. ($($tt:tt)*) => {
  26. upanic!($($tt)*);
  27. };
  28. }
  29. include!(concat!(env!("OUT_DIR"), "/generated.rs"));