Build a [TestFileCompiler] using the host machine's ISA and the default flags for this ISA.
()
| 137 | /// Build a [TestFileCompiler] using the host machine's ISA and the default flags for this |
| 138 | /// ISA. |
| 139 | pub fn with_default_host_isa() -> Result<Self> { |
| 140 | let flags = settings::Flags::new(settings::builder()); |
| 141 | Self::with_host_isa(flags) |
| 142 | } |
| 143 | |
| 144 | /// Declares and compiles all functions in `functions`. Additionally creates a trampoline for |
| 145 | /// each one of them. |