tcg: Renumber TCG_CALL_* flags

Previously, the low 4 bits were used for TCG_CALL_TYPE_MASK,
which was removed in 6a18ae2d29.

Reviewed-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
Richard Henderson 2018-11-26 10:37:34 -08:00
parent b8c92c6d29
commit 3b50352b05
1 changed files with 3 additions and 3 deletions

View File

@ -462,11 +462,11 @@ typedef TCGv_ptr TCGv_env;
/* call flags */ /* call flags */
/* Helper does not read globals (either directly or through an exception). It /* Helper does not read globals (either directly or through an exception). It
implies TCG_CALL_NO_WRITE_GLOBALS. */ implies TCG_CALL_NO_WRITE_GLOBALS. */
#define TCG_CALL_NO_READ_GLOBALS 0x0010 #define TCG_CALL_NO_READ_GLOBALS 0x0001
/* Helper does not write globals */ /* Helper does not write globals */
#define TCG_CALL_NO_WRITE_GLOBALS 0x0020 #define TCG_CALL_NO_WRITE_GLOBALS 0x0002
/* Helper can be safely suppressed if the return value is not used. */ /* Helper can be safely suppressed if the return value is not used. */
#define TCG_CALL_NO_SIDE_EFFECTS 0x0040 #define TCG_CALL_NO_SIDE_EFFECTS 0x0004
/* convenience version of most used call flags */ /* convenience version of most used call flags */
#define TCG_CALL_NO_RWG TCG_CALL_NO_READ_GLOBALS #define TCG_CALL_NO_RWG TCG_CALL_NO_READ_GLOBALS