Loading tcg/tcg.c +3 −3 Original line number Diff line number Diff line Loading @@ -634,7 +634,7 @@ void tcg_register_helper(void *func, const char *name) s->helpers = realloc(s->helpers, n * sizeof(TCGHelperInfo)); s->allocated_helpers = n; } s->helpers[s->nb_helpers].func = (tcg_target_ulong)func; s->helpers[s->nb_helpers].func = (uintptr_t)func; s->helpers[s->nb_helpers].name = name; s->nb_helpers++; } Loading Loading @@ -864,11 +864,11 @@ static int helper_cmp(const void *p1, const void *p2) } /* find helper definition (Note: A hash table would be better) */ static TCGHelperInfo *tcg_find_helper(TCGContext *s, tcg_target_ulong val) static TCGHelperInfo *tcg_find_helper(TCGContext *s, uintptr_t val) { int m, m_min, m_max; TCGHelperInfo *th; tcg_target_ulong v; uintptr_t v; if (unlikely(!s->helpers_sorted)) { qsort(s->helpers, s->nb_helpers, sizeof(TCGHelperInfo), Loading tcg/tcg.h +1 −1 Original line number Diff line number Diff line Loading @@ -402,7 +402,7 @@ typedef struct TCGTemp { } TCGTemp; typedef struct TCGHelperInfo { tcg_target_ulong func; uintptr_t func; const char *name; } TCGHelperInfo; Loading Loading
tcg/tcg.c +3 −3 Original line number Diff line number Diff line Loading @@ -634,7 +634,7 @@ void tcg_register_helper(void *func, const char *name) s->helpers = realloc(s->helpers, n * sizeof(TCGHelperInfo)); s->allocated_helpers = n; } s->helpers[s->nb_helpers].func = (tcg_target_ulong)func; s->helpers[s->nb_helpers].func = (uintptr_t)func; s->helpers[s->nb_helpers].name = name; s->nb_helpers++; } Loading Loading @@ -864,11 +864,11 @@ static int helper_cmp(const void *p1, const void *p2) } /* find helper definition (Note: A hash table would be better) */ static TCGHelperInfo *tcg_find_helper(TCGContext *s, tcg_target_ulong val) static TCGHelperInfo *tcg_find_helper(TCGContext *s, uintptr_t val) { int m, m_min, m_max; TCGHelperInfo *th; tcg_target_ulong v; uintptr_t v; if (unlikely(!s->helpers_sorted)) { qsort(s->helpers, s->nb_helpers, sizeof(TCGHelperInfo), Loading
tcg/tcg.h +1 −1 Original line number Diff line number Diff line Loading @@ -402,7 +402,7 @@ typedef struct TCGTemp { } TCGTemp; typedef struct TCGHelperInfo { tcg_target_ulong func; uintptr_t func; const char *name; } TCGHelperInfo; Loading