default case for ir_value_dump's type switch

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-12 11:28:18 +02:00
parent c3cbda8b2b
commit b968927074

1
ir.c
View file

@ -2851,6 +2851,7 @@ void ir_value_dump(ir_value* v, int (*oprintf)(const char*, ...))
{
if (v->isconst) {
switch (v->vtype) {
default:
case TYPE_VOID:
oprintf("(void)");
break;