Index: src/crankshaft/ia32/lithium-ia32.h |
diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h |
index a2bec84cc05bc7bd8988b246295df267499344aa..7e2e56e01e6fea0fff7bb23fe7fbe212294d8bad 100644 |
--- a/src/crankshaft/ia32/lithium-ia32.h |
+++ b/src/crankshaft/ia32/lithium-ia32.h |
@@ -225,11 +225,6 @@ |
void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); } |
bool IsCall() const { return IsCallBits::decode(bit_field_); } |
- void MarkAsTailCall() { |
- bit_field_ = IsTailCallBits::update(bit_field_, true); |
- } |
- bool IsTailCall() const { return IsTailCallBits::decode(bit_field_); } |
- |
// Interface to the register allocator and iterators. |
bool ClobbersTemps() const { return IsCall(); } |
bool ClobbersRegisters() const { return IsCall(); } |
@@ -264,7 +259,6 @@ |
virtual LOperand* TempAt(int i) = 0; |
class IsCallBits: public BitField<bool, 0, 1> {}; |
- class IsTailCallBits : public BitField<bool, IsCallBits::kNext, 1> {}; |
LEnvironment* environment_; |
SetOncePointer<LPointerMap> pointer_map_; |