Index: src/code-stub-assembler.h |
diff --git a/src/code-stub-assembler.h b/src/code-stub-assembler.h |
index 29afdfe4a0dd3a04ab6614d62238520950cfc4af..42d84c4fb822deff136417a9e082bfcfb5d57e1c 100644 |
--- a/src/code-stub-assembler.h |
+++ b/src/code-stub-assembler.h |
@@ -839,7 +839,11 @@ class V8_EXPORT_PRIVATE CodeStubAssembler : public compiler::CodeAssembler { |
// Loads script context from the script context table. |
Node* LoadScriptContext(Node* context, int context_index); |
- Node* ClampedToUint8(Node* int32_value); |
+ Node* Int32ToUint8Clamped(Node* int32_value); |
+ Node* Float64ToUint8Clamped(Node* float64_value); |
+ |
+ Node* PrepareValueForWriteToTypedArray(Node* key, ElementsKind elements_kind, |
+ Label* bailout); |
// Store value to an elements array with given elements kind. |
void StoreElement(Node* elements, ElementsKind kind, Node* index, Node* value, |