summaryrefslogtreecommitdiff
path: root/longlong.h
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2000-10-23 05:35:20 +0200
committertege <tege@gmplib.org>2000-10-23 05:35:20 +0200
commitdc30933c2d012e178214dec868ad756d08405112 (patch)
tree6d5bdd0e6e528e764aa1741e270239a4b8a9145d /longlong.h
parent815a2b3b7a4af91bcb3bca8065955f8726c84be2 (diff)
downloadgmp-dc30933c2d012e178214dec868ad756d08405112.tar.gz
(ia64 umul_ppmm): Update register flags to match new GCC.
Diffstat (limited to 'longlong.h')
-rw-r--r--longlong.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/longlong.h b/longlong.h
index 86035ad0f..a0426fc6d 100644
--- a/longlong.h
+++ b/longlong.h
@@ -165,8 +165,8 @@ extern UDItype __MPN(udiv_qrnnd) _PROTO ((UDItype, UDItype, UDItype, UDItype *))
do { \
UDItype __m0 = (m0), __m1 = (m1); \
__asm__ ("xma.hu %0 = %1, %2, f0" \
- : "=e" (ph) \
- : "e" (m0), "e" (m1)); \
+ : "=f" (ph) \
+ : "f" (m0), "f" (m1)); \
(pl) = __m0 * __m1; \
} while (0)
#define count_leading_zeros(count, x) \