remove single entrypoint

This commit is contained in:
Brendan Hansknecht 2024-10-07 16:58:50 -07:00
parent 3c232446d9
commit 5b8b781bad
No known key found for this signature in database
GPG key ID: A199D0660F95F948
4 changed files with 5 additions and 37 deletions

View file

@ -5592,7 +5592,7 @@ pub fn build_wasm_test_wrapper<'a, 'ctx>(
opt_level,
procedures,
vec![],
EntryPoint::Single(entry_point),
EntryPoint::Program(env.arena.alloc([entry_point])),
Some(&std::env::temp_dir().join("test.ll")),
);
@ -5619,7 +5619,7 @@ pub fn build_procedures_return_main<'a, 'ctx>(
opt_level,
procedures,
host_exposed_lambda_sets,
EntryPoint::Single(entry_point),
EntryPoint::Program(env.arena.alloc([entry_point])),
Some(&std::env::temp_dir().join("test.ll")),
);