diff options
author | 2019-06-25 09:12:04 -0700 | |
---|---|---|
committer | 2019-06-25 16:25:13 +0000 | |
commit | 1e52a07b4de0f000028e55c332aa46495f60879c (patch) | |
tree | 1eb7dfdce749461c5a8997cbde49ed6d0fea2aa0 /compiler | |
parent | e0ce8bf743b7fc5816bc4045716d75378ce3b654 (diff) |
Correct Indicies -> Indices
This is a misspelling that is somewhat common in art/.
Fix up all the instances I could find.
Test: ./test.py --host
Change-Id: I0a5def6e4126cf4e61efb0619bd59eb45ba7f324
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/optimizing/nodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 023e3a641d..8ac33a4309 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1099,7 +1099,7 @@ class HBasicBlock : public ArenaObject<kArenaAllocBasicBlock> { } // Insert `this` between `predecessor` and `successor. This method - // preserves the indicies, and will update the first edge found between + // preserves the indices, and will update the first edge found between // `predecessor` and `successor`. void InsertBetween(HBasicBlock* predecessor, HBasicBlock* successor) { size_t predecessor_index = successor->GetPredecessorIndexOf(predecessor); |