changeset 8111:97b08ce5d507 libavcodec

ARM: mathops.h whitespace cosmetics
author mru
date Thu, 06 Nov 2008 01:33:17 +0000
parents f5298dd1e61c
children 954dd6e341ce
files armv4l/mathops.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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))