Commit 069e734d authored by whesse@chromium.org's avatar whesse@chromium.org

Fix lint error.

Review URL: http://codereview.chromium.org/174602

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2773 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ced77564
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment