m68k: muldi3: Use semicolon instead of comma
This code works, but it is cleaner to use a semicolon at the end of a statement instead of a comma. Extracted from a big anonymous patch by Julia Lawall <julia.lawall@inria.fr>. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Link: https://lore.kernel.org/r/20210914073155.3883532-1-geert@linux-m68k.org
This commit is contained in:
parent
9fde034864
commit
6621cb4a2d
|
@ -84,7 +84,7 @@ __muldi3 (DItype u, DItype v)
|
||||||
DIunion w;
|
DIunion w;
|
||||||
DIunion uu, vv;
|
DIunion uu, vv;
|
||||||
|
|
||||||
uu.ll = u,
|
uu.ll = u;
|
||||||
vv.ll = v;
|
vv.ll = v;
|
||||||
|
|
||||||
w.ll = __umulsidi3 (uu.s.low, vv.s.low);
|
w.ll = __umulsidi3 (uu.s.low, vv.s.low);
|
||||||
|
|
Loading…
Reference in New Issue