Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: src/base/cpu.cc

Issue 1783343002: [arm64] Fix i/d cache line size confusion typo (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/base/cpu.cc
diff --git a/src/base/cpu.cc b/src/base/cpu.cc
index 003621adbe5d4452f5e8d180867d700368b88b03..4aad47be28203eafe0729f1d921765bb4d1b248b 100644
--- a/src/base/cpu.cc
+++ b/src/base/cpu.cc
@@ -656,8 +656,8 @@ CPU::CPU()
}
CacheLineSizes sizes;
- icache_line_size_ = sizes.dcache_line_size();
- dcache_line_size_ = sizes.icache_line_size();
+ icache_line_size_ = sizes.icache_line_size();
+ dcache_line_size_ = sizes.dcache_line_size();
#elif V8_HOST_ARCH_PPC
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698