diff options
Diffstat (limited to 'target-i386/helper.c')
-rw-r--r-- | target-i386/helper.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target-i386/helper.c b/target-i386/helper.c index 7bd545e81b..123f510497 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -3395,6 +3395,10 @@ void helper_idivq_EAX_T0(void) EDX = r1; } +void helper_bswapq_T0(void) +{ + T0 = bswap64(T0); +} #endif float approx_rsqrt(float a) |