mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 08:51:28 +00:00
[qfcc] Fix some gcc purity issues
*sigh*. Still, nice to have them correct.
This commit is contained in:
parent
6f9795fa27
commit
6b0b1b24b8
2 changed files with 2 additions and 2 deletions
|
@ -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)) {
|
||||
|
|
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue