Index: src/compiler/code-assembler.h |
diff --git a/src/compiler/code-assembler.h b/src/compiler/code-assembler.h |
index 96f14037f90fa55c8ea5a992b31f14de0430ef1f..88e23ff8aea64de354694c2da1c6cbc8fc5918cd 100644 |
--- a/src/compiler/code-assembler.h |
+++ b/src/compiler/code-assembler.h |
@@ -264,19 +264,19 @@ class V8_EXPORT_PRIVATE CodeAssembler { |
// Load raw memory location. |
Node* Load(MachineType rep, Node* base); |
- Node* Load(MachineType rep, Node* base, Node* index); |
- Node* AtomicLoad(MachineType rep, Node* base, Node* index); |
+ Node* Load(MachineType rep, Node* base, Node* offset); |
+ Node* AtomicLoad(MachineType rep, Node* base, Node* offset); |
// Load a value from the root array. |
Node* LoadRoot(Heap::RootListIndex root_index); |
// Store value to raw memory location. |
Node* Store(MachineRepresentation rep, Node* base, Node* value); |
- Node* Store(MachineRepresentation rep, Node* base, Node* index, Node* value); |
+ Node* Store(MachineRepresentation rep, Node* base, Node* offset, Node* value); |
Node* StoreNoWriteBarrier(MachineRepresentation rep, Node* base, Node* value); |
- Node* StoreNoWriteBarrier(MachineRepresentation rep, Node* base, Node* index, |
+ Node* StoreNoWriteBarrier(MachineRepresentation rep, Node* base, Node* offset, |
Node* value); |
- Node* AtomicStore(MachineRepresentation rep, Node* base, Node* index, |
+ Node* AtomicStore(MachineRepresentation rep, Node* base, Node* offset, |
Node* value); |
// Store a value to the root array. |