radeon/llvm: Only support 512 constant registers on R600

This is necessary upcoming encoding changes, since we will only be
using 9-bits for register encoding.
This commit is contained in:
Tom Stellard 2012-09-19 12:23:20 -04:00
parent 5abb1f8bde
commit d525ed1a84

View file

@ -16,7 +16,7 @@
use strict;
use warnings;
use constant CONST_REG_COUNT => 1024;
use constant CONST_REG_COUNT => 512;
use constant TEMP_REG_COUNT => 128;
my $CREG_MAX = CONST_REG_COUNT - 1;