Fix lint error.
authorwhesse@chromium.org <whesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 27 Aug 2009 11:48:37 +0000 (11:48 +0000)
committerwhesse@chromium.org <whesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 27 Aug 2009 11:48:37 +0000 (11:48 +0000)
Review URL: http://codereview.chromium.org/174602

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2773 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/platform-win32.cc

index 67e9492..d4a183d 100644 (file)
@@ -1318,9 +1318,9 @@ double OS::nan_value() {
 
 int OS::ActivationFrameAlignment() {
 #ifdef _WIN64
-  return 16;  // C math library requires the stack to be 16-byte aligned.
+  return 16;  // Windows 64-bit ABI requires the stack to be 16-byte aligned.
 #else
-  return 8;  // Floating-point math runs faster if stack is at least 8-byte aligned.
+  return 8;  // Floating-point math runs faster with 8-byte alignment.
 #endif
 }