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

Unified Diff: runtime/vm/os_win.cc

Issue 14158012: Align code by 32 bytes to reduce benchmark flakiness on Intel CPUs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « runtime/vm/os_linux.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/os_win.cc
diff --git a/runtime/vm/os_win.cc b/runtime/vm/os_win.cc
index 1c81e16ea8548e294408679ee0fd72b44fdd1dac..bdd6cec2226400e382106466a905f2a4b4aa787b 100644
--- a/runtime/vm/os_win.cc
+++ b/runtime/vm/os_win.cc
@@ -137,8 +137,8 @@ word OS::ActivationFrameAlignment() {
word OS::PreferredCodeAlignment() {
- ASSERT(16 <= OS::kMaxPreferredCodeAlignment);
- return 16;
+ ASSERT(32 <= OS::kMaxPreferredCodeAlignment);
+ return 32;
}
« no previous file with comments | « runtime/vm/os_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698