Revision: 8436
Author:   [email protected]
Date:     Tue Jun 28 01:16:23 2011
Log:      Merge Solaris stack alignment fix to 3.3 branch.
Review URL: http://codereview.chromium.org/7277032
http://code.google.com/p/v8/source/detail?r=8436

Modified:
 /branches/3.3/src/platform-solaris.cc
 /branches/3.3/src/version.cc

=======================================
--- /branches/3.3/src/platform-solaris.cc       Wed Apr 13 01:46:07 2011
+++ /branches/3.3/src/platform-solaris.cc       Tue Jun 28 01:16:23 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.3/src/version.cc        Fri Jun 24 04:54:25 2011
+++ /branches/3.3/src/version.cc        Tue Jun 28 01:16:23 2011
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     3
 #define BUILD_NUMBER      10
-#define PATCH_LEVEL       15
+#define PATCH_LEVEL       16
 // 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

Reply via email to