Fix LLVM ERROR

fixes #545
This commit is contained in:
Chinedu Francis Nwafili
2018-07-25 07:24:39 -04:00
parent 269127a5c5
commit c8f0304163
2 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ fn extract_programs(module: &mut Module) -> Result<Vec<shared::Program>, Error>
Section::Custom(ref s) => s,
_ => continue,
};
if custom.name() != "__wasm_bindgen_unstable" {
if custom.name() != "__wasm_bindgen,unstable" {
continue;
}
to_remove.push(i);