Index: src/builtins/builtins-string.cc |
diff --git a/src/builtins/builtins-string.cc b/src/builtins/builtins-string.cc |
index 20ad423b144a5e0a12db3d9dc71a35d7cba2a547..f889f60b9606ae8c844909c58d520b4b6d74c6c8 100644 |
--- a/src/builtins/builtins-string.cc |
+++ b/src/builtins/builtins-string.cc |
@@ -417,8 +417,7 @@ TF_BUILTIN(StringCharAt, CodeStubAssembler) { |
Node* position = Parameter(1); |
// Load the character code at the {position} from the {receiver}. |
- Node* code = StringCharCodeAt(receiver, position, |
- CodeStubAssembler::INTPTR_PARAMETERS); |
+ Node* code = StringCharCodeAt(receiver, position, INTPTR_PARAMETERS); |
// And return the single character string with only that {code} |
Node* result = StringFromCharCode(code); |
@@ -430,8 +429,7 @@ TF_BUILTIN(StringCharCodeAt, CodeStubAssembler) { |
Node* position = Parameter(1); |
// Load the character code at the {position} from the {receiver}. |
- Node* code = StringCharCodeAt(receiver, position, |
- CodeStubAssembler::INTPTR_PARAMETERS); |
+ Node* code = StringCharCodeAt(receiver, position, INTPTR_PARAMETERS); |
// And return it as TaggedSigned value. |
// TODO(turbofan): Allow builtins to return values untagged. |