svga: Tighten the register file assertions.

Untested. But should fix fdo 42576.
This commit is contained in:
José Fonseca
2011-11-04 20:07:26 +00:00
parent 26ebf9c5e1
commit 2df15d07c0
+2 -4
View File
@@ -264,8 +264,7 @@ dst_register( unsigned file,
/* check values against bitfield sizes */
assert(number < (1 << 11));
assert((file >> 3) < 4);
assert((file & 0x7) < 8);
assert(file <= SVGA3DREG_PREDICATE);
dest.value = 0;
dest.num = number;
@@ -298,8 +297,7 @@ src_token( unsigned file, int number )
/* check values against bitfield sizes */
assert(number < (1 << 11));
assert((file >> 3) < 4);
assert((file & 0x7) < 8);
assert(file <= SVGA3DREG_PREDICATE);
src.value = 0;
src.num = number;