assemble.c: quiet warning

Clear an uninitialized variable warning.  The case can't actually
happen, but the compiler doesn't know that.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2009-07-27 11:10:33 -07:00
parent 77df046f0b
commit ed3e84f9cd

View File

@ -2107,6 +2107,9 @@ static enum match_result matches(const struct itemplate *itemp,
case 64:
asize = BITS64;
break;
default:
asize = 0;
break;
}
break;
default: