radv: Rename ac_arg_regfile

We'll duplicate this in a header file in the next commit, and then
remove the original enum. Just rename it temporarily so that things
keep building.

Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
Connor Abbott 2019-10-31 15:23:35 +01:00
parent 29081c671f
commit 43da33c169
1 changed files with 2 additions and 2 deletions

View File

@ -355,13 +355,13 @@ struct arg_info {
uint8_t num_vgprs_used;
};
enum ac_arg_regfile {
enum radv_arg_regfile {
ARG_SGPR,
ARG_VGPR,
};
static void
add_arg(struct arg_info *info, enum ac_arg_regfile regfile, LLVMTypeRef type,
add_arg(struct arg_info *info, enum radv_arg_regfile regfile, LLVMTypeRef type,
LLVMValueRef *param_ptr)
{
assert(info->count < MAX_ARGS);