diff options
author | vanilla <vanilla@FreeBSD.org> | 2013-12-28 22:51:03 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2013-12-28 22:51:03 +0800 |
commit | 0f1693e4505a54b587fd8dc1dbc7ae3c45158928 (patch) | |
tree | ec06cf7dac8864342ca3bd56dc0b575fa8d16606 /lang | |
parent | 14ab497af266f5bbe98f537cf7195f5377afa1f6 (diff) | |
download | freebsd-ports-gnome-0f1693e4505a54b587fd8dc1dbc7ae3c45158928.tar.gz freebsd-ports-gnome-0f1693e4505a54b587fd8dc1dbc7ae3c45158928.tar.zst freebsd-ports-gnome-0f1693e4505a54b587fd8dc1dbc7ae3c45158928.zip |
Fix build on i386.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/v8-devel/files/patch-lithium-codegen-ia32.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/v8-devel/files/patch-lithium-codegen-ia32.h b/lang/v8-devel/files/patch-lithium-codegen-ia32.h new file mode 100644 index 000000000000..848718a8265b --- /dev/null +++ b/lang/v8-devel/files/patch-lithium-codegen-ia32.h @@ -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]; + } |