summaryrefslogtreecommitdiff
path: root/gcc/longlong.h
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-03-03 19:38:14 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-03-03 19:38:14 +0000
commit1d67c69a6e290b2ae5b83d058299f3872dddbe7e (patch)
tree9f0c6ae74f05cb817c7b2b78d8b980ae3781c65e /gcc/longlong.h
parentf624290705e4dec86d53bddfe04dc6aec02004eb (diff)
downloadgcc-1d67c69a6e290b2ae5b83d058299f3872dddbe7e.tar.gz
* longlong.h (umul_ppmm): Don't use a multiline string.
From-SVN: r40219
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r--gcc/longlong.h3
1 files changed, 1 insertions, 2 deletions
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))); \