[qfcc] Fix some gcc purity issues

*sigh*. Still, nice to have them correct.
This commit is contained in:
Bill Currie 2025-02-17 19:43:15 +09:00
parent 6f9795fa27
commit 6b0b1b24b8
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ add_attribute (attribute_t **attributes, attribute_t *attr)
*attributes = attr;
}
static const type_t *
static const type_t * __attribute__((pure))
glsl_matrix_type (const type_t *type)
{
while (is_array (type)) {

View file

@ -2538,7 +2538,7 @@ spirv_shift_op (int op, const expr_t *e1, const expr_t *e2)
return fold_constants (e);
}
static bool
static bool __attribute__((pure))
spirv_types_logically_match (const type_t *dst, const type_t *src)
{
if (type_same (dst, src)) {