# HG changeset patch # User mru # Date 1225935197 0 # Node ID 97b08ce5d5074a78cf4b810cb826d46db464dae4 # Parent f5298dd1e61cab28c408d6749315708656672954 ARM: mathops.h whitespace cosmetics diff -r f5298dd1e61c -r 97b08ce5d507 armv4l/mathops.h --- a/armv4l/mathops.h Wed Nov 05 23:28:41 2008 +0000 +++ b/armv4l/mathops.h Thu Nov 06 01:33:17 2008 +0000 @@ -55,7 +55,7 @@ { union { uint64_t x; unsigned hl[2]; } x; __asm__ ("smull %0, %1, %2, %3" - : "=r"(x.hl[0]), "=r"(x.hl[1]) : "r"(a), "r"(b)); + : "=r"(x.hl[0]), "=r"(x.hl[1]) : "r"(a), "r"(b)); return x.x; } #define MUL64 MUL64 @@ -64,7 +64,7 @@ { union { uint64_t x; unsigned hl[2]; } x = { d }; __asm__ ("smlal %0, %1, %2, %3" - : "+r"(x.hl[0]), "+r"(x.hl[1]) : "r"(a), "r"(b)); + : "+r"(x.hl[0]), "+r"(x.hl[1]) : "r"(a), "r"(b)); return x.x; } #define MAC64(d, a, b) ((d) = MAC64(d, a, b))