Revision: 8435
Author: [email protected]
Date: Tue Jun 28 01:15:40 2011
Log: Merge Solaris stack alignment fix to the 3.2 branch.
Review URL: http://codereview.chromium.org/7277034
http://code.google.com/p/v8/source/detail?r=8435
Modified:
/branches/3.2/src/platform-solaris.cc
/branches/3.2/src/version.cc
=======================================
--- /branches/3.2/src/platform-solaris.cc Wed Apr 13 01:46:07 2011
+++ /branches/3.2/src/platform-solaris.cc Tue Jun 28 01:15:40 2011
@@ -1,4 +1,4 @@
-// Copyright 2006-2009 the V8 project authors. All rights reserved.
+// Copyright 2011 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
@@ -105,7 +105,8 @@
int OS::ActivationFrameAlignment() {
- return STACK_ALIGN;
+ // GCC generates code that requires 16 byte alignment such as movdqa.
+ return Max(STACK_ALIGN, 16);
}
=======================================
--- /branches/3.2/src/version.cc Fri Jun 24 04:53:35 2011
+++ /branches/3.2/src/version.cc Tue Jun 28 01:15:40 2011
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 2
#define BUILD_NUMBER 10
-#define PATCH_LEVEL 23
+#define PATCH_LEVEL 24
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev