ir_constant_data data = { { 0 } };
// Read in list of values (at most 16).
- int k = 0;
+ unsigned k = 0;
foreach_iter(exec_list_iterator, it, values->subexpressions) {
if (k >= 16) {
ir_read_error(values, "expected at most 16 numbers");
++k;
}
if (k != type->components()) {
- ir_read_error(values, "expected %d constant values, found %d",
+ ir_read_error(values, "expected %u constant values, found %u",
type->components(), k);
return NULL;
}