Add support for llvm-debug-dir on functions with a V128 type.

This commit is contained in:
Nick Lewycky
2020-07-30 15:44:42 -07:00
parent fb1bdc6f8f
commit 5e3d66703f

View File

@@ -225,6 +225,7 @@ impl StoreOptions {
Type::I64 => "I".to_string(), Type::I64 => "I".to_string(),
Type::F32 => "f".to_string(), Type::F32 => "f".to_string(),
Type::F64 => "F".to_string(), Type::F64 => "F".to_string(),
Type::V128 => "v".to_string(),
_ => { _ => {
unimplemented!("Function type not yet supported for generated signatures in debugging"); unimplemented!("Function type not yet supported for generated signatures in debugging");
} }