Reviewers: jarin,
Message:
Committed patchset #1 manually as r18673 (presubmit successful).
Description:
Fix compilation with latest Xcode toolchain.
[email protected]
Committed: https://code.google.com/p/v8/source/detail?r=18673
Please review this at https://codereview.chromium.org/142563002/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -3 lines):
M src/ia32/lithium-ia32.h
Index: src/ia32/lithium-ia32.h
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
index
a505e585ed7abc79a091a33d0ee8668109fd0c6a..b278c70b30a9c05349c96dfa7d1666ca63b5c14e
100644
--- a/src/ia32/lithium-ia32.h
+++ b/src/ia32/lithium-ia32.h
@@ -1849,8 +1849,7 @@ class LCallWithDescriptor V8_FINAL : public
LTemplateResultInstruction<1> {
LCallWithDescriptor(const CallInterfaceDescriptor* descriptor,
ZoneList<LOperand*>& operands,
Zone* zone)
- : descriptor_(descriptor),
- inputs_(descriptor->environment_length() + 1, zone) {
+ : inputs_(descriptor->environment_length() + 1, zone) {
ASSERT(descriptor->environment_length() + 1 == operands.length());
inputs_.AddAll(operands, zone);
}
@@ -1865,7 +1864,6 @@ class LCallWithDescriptor V8_FINAL : public
LTemplateResultInstruction<1> {
int arity() const { return hydrogen()->argument_count() - 1; }
- const CallInterfaceDescriptor* descriptor_;
ZoneList<LOperand*> inputs_;
// Iterator support.
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.