From 5e3d66703f8f66a9ceeb127db39250dd4e3670d4 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Thu, 30 Jul 2020 15:44:42 -0700 Subject: [PATCH] Add support for llvm-debug-dir on functions with a V128 type. --- lib/cli/src/store.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cli/src/store.rs b/lib/cli/src/store.rs index 4383201e8..c33fb1924 100644 --- a/lib/cli/src/store.rs +++ b/lib/cli/src/store.rs @@ -225,6 +225,7 @@ impl StoreOptions { Type::I64 => "I".to_string(), Type::F32 => "f".to_string(), Type::F64 => "F".to_string(), + Type::V128 => "v".to_string(), _ => { unimplemented!("Function type not yet supported for generated signatures in debugging"); }