svn commit: r337874 - head/lang/v8-devel/files

Vanilla I. Shu vanilla at FreeBSD.org
Sat Dec 28 14:51:03 UTC 2013


Author: vanilla
Date: Sat Dec 28 14:51:03 2013
New Revision: 337874
URL: http://svnweb.freebsd.org/changeset/ports/337874

Log:
  Fix build on i386.

Added:
  head/lang/v8-devel/files/patch-lithium-codegen-ia32.h   (contents, props changed)

Added: head/lang/v8-devel/files/patch-lithium-codegen-ia32.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/lang/v8-devel/files/patch-lithium-codegen-ia32.h	Sat Dec 28 14:51:03 2013	(r337874)
@@ -0,0 +1,11 @@
+--- src/ia32/lithium-codegen-ia32.h.orig	2013-12-28 22:35:15.000000000 +0800
++++ src/ia32/lithium-codegen-ia32.h	2013-12-28 22:35:41.000000000 +0800
+@@ -426,7 +426,7 @@ class LCodeGen: public LCodeGenBase {
+     explicit X87Stack(MacroAssembler* masm)
+         : stack_depth_(0), is_mutable_(true), masm_(masm) { }
+     explicit X87Stack(const X87Stack& other)
+-        : stack_depth_(other.stack_depth_), is_mutable_(false), masm_(masm()) {
++        : stack_depth_(other.stack_depth_), is_mutable_(false), masm_(NULL) {
+       for (int i = 0; i < stack_depth_; i++) {
+         stack_[i] = other.stack_[i];
+       }


More information about the svn-ports-head mailing list