* named 'foo'.
*/
char key[128];
- snprintf(key, sizeof(key), "%p[%u]", base, array_size);
+ snprintf(key, sizeof(key), "%p[%u]", (void *) base, array_size);
const glsl_type *t = (glsl_type *) hash_table_find(array_types, key);
if (t == NULL) {
break;
size += snprintf(& hash_key[size], sizeof(hash_key) - size,
- "%p", key->fields.structure[i].type);
+ "%p", (void *) key->fields.structure[i].type);
}
return hash_table_string_hash(& hash_key);
if (debug) {
printf("%s@%p: %d refs, %d assigns, %sdeclared in our scope\n",
- entry->var->name, entry->var,
+ entry->var->name, (void *) entry->var,
entry->referenced_count, entry->assigned_count,
entry->declaration ? "" : "not ");
}
if (debug) {
printf("Removed assignment to %s@%p\n",
- entry->var->name, entry->var);
+ entry->var->name, (void *) entry->var);
}
}
} else {
if (debug) {
printf("Removed declaration of %s@%p\n",
- entry->var->name, entry->var);
+ entry->var->name, (void *) entry->var);
}
}
}
{
if ((ir->var == NULL) || (ir->var->as_variable() == NULL)) {
printf("ir_dereference_variable @ %p does not specify a variable %p\n",
- ir, ir->var);
+ (void *) ir, (void *) ir->var);
abort();
}
if (hash_table_find(ht, ir->var) == NULL) {
printf("ir_dereference_variable @ %p specifies undeclared variable "
"`%s' @ %p\n",
- ir, ir->var->name, ir->var);
+ (void *) ir, ir->var->name, (void *) ir->var);
abort();
}
printf("Function definition nested inside another function "
"definition:\n");
printf("%s %p inside %s %p\n",
- ir->name, ir,
- this->current_function->name, this->current_function);
+ ir->name, (void *) ir,
+ this->current_function->name, (void *) this->current_function);
abort();
}
printf("Function signature nested inside wrong function "
"definition:\n");
printf("%p inside %s %p instead of %s %p\n",
- ir,
- this->current_function->name, this->current_function,
- ir->function_name(), ir->function());
+ (void *) ir,
+ this->current_function->name, (void *) this->current_function,
+ ir->function_name(), (void *) ir->function());
abort();
}