Sha256: a1f736ddafaaa475e3483547eaba80b7d68595a5ef701139bb0652599fdb2139
Contents?: true
Size: 681 Bytes
Versions: 8
Compression:
Stored size: 681 Bytes
Contents
//! Wrapper environment for generated code from optimization rules in ISLE. // See https://github.com/rust-lang/rust/issues/47995: we cannot use `#![...]` attributes inside of // the generated ISLE source below because we include!() it. We must include!() it because its path // depends on an environment variable; and also because of this, we can't do the `#[path = "..."] // mod generated_code;` trick either. #![allow(dead_code, unreachable_code, unreachable_patterns)] #![allow(unused_imports, unused_variables, non_snake_case, unused_mut)] #![allow(irrefutable_let_patterns, non_camel_case_types, clippy::clone_on_copy)] include!(concat!(env!("ISLE_DIR"), "/isle_opt.rs"));
Version data entries
8 entries across 8 versions & 1 rubygems