Date: Sat, 28 Dec 2013 14:51:03 +0000 (UTC) From: "Vanilla I. Shu" <vanilla@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337874 - head/lang/v8-devel/files Message-ID: <201312281451.rBSEp3Ww023262@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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]; + }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312281451.rBSEp3Ww023262>