X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=gmqcc.h;h=9848f20bbc19067d69cc0043e523fb7a4abe3236;hb=a02e44100e6faf7dbf3b337332e26bcd1a903d8b;hp=86b0bffd6e861280294df032f14853d035aeda3c;hpb=fc57fa406438ce41ddaff4a6d8b80f65e99b03c2;p=xonotic%2Fgmqcc.git diff --git a/gmqcc.h b/gmqcc.h index 86b0bff..9848f20 100644 --- a/gmqcc.h +++ b/gmqcc.h @@ -332,7 +332,6 @@ void *stat_mem_allocate (size_t, size_t, const char *); bool util_filexists (const char *); bool util_strupper (const char *); bool util_strdigit (const char *); -void util_debug (const char *, const char *, ...); void util_endianswap (void *, size_t, unsigned int); size_t util_strtocmd (const char *, char *, size_t); @@ -713,6 +712,7 @@ enum { VINSTR_PHI, VINSTR_JUMP, VINSTR_COND, + /* A never returning CALL. * Creating this causes IR blocks to be marked as 'final'. * No-Return-Call @@ -726,7 +726,10 @@ enum { VINSTR_BITOR_VF, VINSTR_BITXOR, VINSTR_BITXOR_V, - VINSTR_BITXOR_VF /* BITXOR_VF must be the last emulated bitop */ + VINSTR_BITXOR_VF, + VINSTR_CROSS, + VINSTR_NEG_F, + VINSTR_NEG_V }; /* TODO: elide */