Failed to apply patch for src/interpreter/bytecode-array-builder.cc:
While running git apply --index -3 -p1;
error: patch failed: src/interpreter/bytecode-array-builder.cc:50
Falling back to three-way merge...
Applied patch to 'src/interpreter/bytecode-array-builder.cc' with
conflicts.
U src/interpreter/bytecode-array-builder.cc
Patch: src/interpreter/bytecode-array-builder.cc
Index: src/interpreter/bytecode-array-builder.cc
diff --git a/src/interpreter/bytecode-array-builder.cc
b/src/interpreter/bytecode-array-builder.cc
index
8cc0772db97d4b0a98180c57d5c0ffa28d8cc726..04e970101c90bc1365b217c1e9a388bc72defbcc
100644
--- a/src/interpreter/bytecode-array-builder.cc
+++ b/src/interpreter/bytecode-array-builder.cc
@@ -50,7 +50,7 @@ BytecodeArrayBuilder& BytecodeArrayBuilder::LoadLiteral(
int32_t raw_smi = smi->value();
if (raw_smi == 0) {
Output(Bytecode::kLdaZero);
- } else if (raw_smi > -128 && raw_smi <= 128) {
+ } else if (raw_smi >= -128 && raw_smi < 128) {
Output(Bytecode::kLdaSmi8, static_cast<uint8_t>(raw_smi));
} else {
// TODO(oth): Put Smi in constant pool.
https://codereview.chromium.org/1294793002/
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.