Index: src/wasm/wasm-module.h |
diff --git a/src/wasm/wasm-module.h b/src/wasm/wasm-module.h |
index 0438dba7c275ab264a4af6723663b82f12f3cb3b..b3ae2569fc308c50080eb711358445dab7b4fb87 100644 |
--- a/src/wasm/wasm-module.h |
+++ b/src/wasm/wasm-module.h |
@@ -96,7 +96,6 @@ struct WasmSection { |
enum WasmFunctionDeclBit { |
kDeclFunctionName = 0x01, |
- kDeclFunctionImport = 0x02, |
kDeclFunctionLocals = 0x04, |
kDeclFunctionExport = 0x08 |
}; |
@@ -121,7 +120,6 @@ struct WasmFunction { |
uint16_t local_f32_count; // number of f32 local variables. |
uint16_t local_f64_count; // number of f64 local variables. |
bool exported; // true if this function is exported. |
- bool external; // true if this function is externally supplied. |
}; |
// Static representation of an imported WASM function. |