intel/vec4: Fix constness of vec4_instruction::reads_flag() and ::writes_flag().

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Francisco Jerez 2020-02-22 01:17:21 -08:00
parent bda1d72dd9
commit c8ce1cfc9c
1 changed files with 2 additions and 2 deletions

View File

@ -303,7 +303,7 @@ public:
opcode == VEC4_OPCODE_SET_HIGH_32BIT;
}
bool reads_flag()
bool reads_flag() const
{
return predicate || opcode == VS_OPCODE_UNPACK_FLAGS_SIMD4X2;
}
@ -329,7 +329,7 @@ public:
}
}
bool writes_flag()
bool writes_flag() const
{
return (conditional_mod && (opcode != BRW_OPCODE_SEL &&
opcode != BRW_OPCODE_CSEL &&