Bug 1173764 - Enable LAllocation/LUse serialization in optimized builds. r=bhackett

This commit is contained in:
Nicolas B. Pierron 2015-06-24 22:46:02 +02:00
parent 461581c95f
commit 32c276bf87
2 changed files with 0 additions and 10 deletions

View File

@ -340,7 +340,6 @@ LAllocation::aliases(const LAllocation& other) const
return *this == other;
}
#ifdef DEBUG
static const char * const TypeChars[] =
{
"g", // GENERAL
@ -444,7 +443,6 @@ LAllocation::toString() const
MOZ_CRASH("what?");
}
}
#endif // DEBUG
void
LAllocation::dump() const

View File

@ -183,11 +183,7 @@ class LAllocation : public TempObject
return bits_;
}
#ifdef DEBUG
const char* toString() const;
#else
const char* toString() const { return "???"; }
#endif
bool aliases(const LAllocation& other) const;
void dump() const;
@ -580,11 +576,7 @@ class LDefinition
}
}
#ifdef DEBUG
const char* toString() const;
#else
const char* toString() const { return "???"; }
#endif
void dump() const;
};