Unreachable code to silence older compilers

This commit is contained in:
Asanka C. Herath
2010-11-18 20:46:23 -05:00
parent 880d728e02
commit 59542f4298
2 changed files with 11 additions and 1 deletions

View File

@@ -58,8 +58,10 @@ integer_symbol(const char *basename, const Type *t)
return "unsigned";
else if (t->range->min == 0 && t->range->max == INT_MAX)
return "unsigned";
else
else {
abort();
UNREACHABLE(return NULL);
}
}
static const char *