From owner-svn-ports-all@FreeBSD.ORG Sat Dec 28 14:51:03 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D786DFBD; Sat, 28 Dec 2013 14:51:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C32A5127B; Sat, 28 Dec 2013 14:51:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBSEp36o023263; Sat, 28 Dec 2013 14:51:03 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBSEp3Ww023262; Sat, 28 Dec 2013 14:51:03 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201312281451.rBSEp3Ww023262@svn.freebsd.org> From: "Vanilla I. Shu" Date: Sat, 28 Dec 2013 14:51:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337874 - head/lang/v8-devel/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Dec 2013 14:51:03 -0000 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]; + }