summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/longlong.h3
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c81260a0999..566c3bcda74 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-03 Neil Booth <neil@daikokuya.demon.co.uk>
+
+ * longlong.h (umul_ppmm): Don't use a multiline string.
+
2001-03-03 John David Anglin <dave@hiauly1.hia.nrc.ca>
* fixinc/fixlib.h (t_bool): Add identifier `t_bool' in typedef.
diff --git a/gcc/longlong.h b/gcc/longlong.h
index e4d9629d20f..0d9838bf263 100644
--- a/gcc/longlong.h
+++ b/gcc/longlong.h
@@ -916,8 +916,7 @@ UDItype __umulsidi3 (USItype, USItype);
({union {UDItype __ll; \
struct {USItype __h, __l;} __i; \
} __xx; \
- __asm__ ("movw %1,%R0
- uemul %2,%0" \
+ __asm__ ("movw %1,%R0\n\tuemul %2,%0" \
: "=&r" (__xx.__ll) \
: "g" ((USItype) (u)), \
"g" ((USItype) (v))); \