diff options
Diffstat (limited to 'sysdeps/alpha/soft-fp/ots_cvtqux.c')
-rw-r--r-- | sysdeps/alpha/soft-fp/ots_cvtqux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/alpha/soft-fp/ots_cvtqux.c b/sysdeps/alpha/soft-fp/ots_cvtqux.c index 5562098381..677b0b1a6a 100644 --- a/sysdeps/alpha/soft-fp/ots_cvtqux.c +++ b/sysdeps/alpha/soft-fp/ots_cvtqux.c @@ -30,10 +30,10 @@ _OtsCvtQUX (unsigned long a) { FP_DECL_EX; FP_DECL_Q(C); - FP_DECL_RETURN(c); + AXP_DECL_RETURN_Q(c); FP_FROM_INT_Q(C, a, 64, unsigned long); - FP_PACK_RAW_Q(c, C); + AXP_PACK_RAW_Q(c, C); - FP_RETURN(c); + AXP_RETURN_Q(c); } |