Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index a1a52b6eee75ef4c97542aedafc29f5e99f347b6..bdc38c630ecbc82f231b9acccfe01913ac2db412 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -7217,6 +7217,9 @@ class SharedFunctionInfo: public HeapObject { |
// Whether this function was created from a FunctionDeclaration. |
DECL_BOOLEAN_ACCESSORS(is_declaration) |
+ // Indicates that asm->wasm conversion failed and should not be re-attempted. |
+ DECL_BOOLEAN_ACCESSORS(is_asm_wasm_broken) |
+ |
inline FunctionKind kind(); |
inline void set_kind(FunctionKind kind); |
@@ -7489,6 +7492,7 @@ class SharedFunctionInfo: public HeapObject { |
kIsAsyncFunction, |
kDeserialized, |
kIsDeclaration, |
+ kIsAsmWasmBroken, |
kCompilerHintsCount, // Pseudo entry |
}; |
// Add hints for other modes when they're added. |