Revision: 22718
Author: [email protected]
Date: Wed Jul 30 15:11:40 2014 UTC
Log: Fix build failures with LLVM-GCC 4.2 on Mac (again).
[email protected]
Review URL: https://codereview.chromium.org/431633002
http://code.google.com/p/v8/source/detail?r=22718
Modified:
/branches/bleeding_edge/src/compiler/common-operator.h
=======================================
--- /branches/bleeding_edge/src/compiler/common-operator.h Wed Jul 30
14:45:41 2014 UTC
+++ /branches/bleeding_edge/src/compiler/common-operator.h Wed Jul 30
15:11:40 2014 UTC
@@ -24,8 +24,8 @@
public:
ControlOperator(IrOpcode::Value opcode, uint16_t properties, int inputs,
int outputs, int controls, const char* mnemonic)
- : Operator1(static_cast<uint8_t>(opcode), properties, inputs,
outputs,
- mnemonic, controls) {}
+ : Operator1<int>(opcode, properties, inputs, outputs, mnemonic,
+ controls) {}
virtual OStream& PrintParameter(OStream& os) const { return os; } //
NOLINT
int ControlInputCount() const { return parameter(); }
@@ -34,9 +34,9 @@
class CallOperator : public Operator1<CallDescriptor*> {
public:
CallOperator(CallDescriptor* descriptor, const char* mnemonic)
- : Operator1(static_cast<uint8_t>(IrOpcode::kCall),
- descriptor->properties(), descriptor->InputCount(),
- descriptor->ReturnCount(), mnemonic, descriptor) {}
+ : Operator1<CallDescriptor*>(
+ IrOpcode::kCall, descriptor->properties(),
descriptor->InputCount(),
+ descriptor->ReturnCount(), mnemonic, descriptor) {}
virtual OStream& PrintParameter(OStream& os) const { // NOLINT
return os << "[" << *parameter() << "]";
--
--
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/d/optout.