Merge remote-tracking branch 'origin/trunk' into wasm-test-wasm3

This commit is contained in:
Folkert 2022-07-10 22:46:15 +02:00
commit f7d556b0d1
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
34 changed files with 212 additions and 162 deletions

View file

@ -50,12 +50,10 @@ fn create_llvm_module<'a>(
context: &'a inkwell::context::Context,
target: &Triple,
) -> (&'static str, String, &'a Module<'a>) {
use std::path::Path;
let target_info = roc_target::TargetInfo::from(target);
let filename = PathBuf::from("Test.roc");
let src_dir = Path::new("fake/test/path");
let src_dir = PathBuf::from("fake/test/path");
let module_src;
let temp;