Bug 879701 - Split up the used/bound assertion in ARM CodeGenerator. r=mjrosenb

This commit is contained in:
Christian Holler 2013-07-10 12:24:01 +02:00
Родитель 4a08595eeb
Коммит 7f885ca510
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -195,7 +195,8 @@ CodeGeneratorARM::bailoutIf(Assembler::Condition condition, LSnapshot *snapshot)
bool
CodeGeneratorARM::bailoutFrom(Label *label, LSnapshot *snapshot)
{
JS_ASSERT(label->used() && !label->bound());
JS_ASSERT(label->used());
JS_ASSERT(!label->bound());
CompileInfo &info = snapshot->mir()->block()->info();
switch (info.executionMode()) {