Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/common/lib/libc/arch/arm/gen Don't need to include assym.h



details:   https://anonhg.NetBSD.org/src/rev/3238cac80c91
branches:  trunk
changeset: 783383:3238cac80c91
user:      matt <matt%NetBSD.org@localhost>
date:      Tue Dec 18 06:14:23 2012 +0000

description:
Don't need to include assym.h
Add a missing comma.

diffstat:

 common/lib/libc/arch/arm/gen/neon_mask.S |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (25 lines):

diff -r d825eb7bccb4 -r 3238cac80c91 common/lib/libc/arch/arm/gen/neon_mask.S
--- a/common/lib/libc/arch/arm/gen/neon_mask.S  Tue Dec 18 06:05:56 2012 +0000
+++ b/common/lib/libc/arch/arm/gen/neon_mask.S  Tue Dec 18 06:14:23 2012 +0000
@@ -28,11 +28,10 @@
  */
 
 #include <machine/asm.h>
-#include "assym.h"
 
 #ifdef _ARM_ARCH_7
 
-RCSID("$NetBSD: neon_mask.S,v 1.1 2012/12/17 00:46:14 matt Exp $")
+RCSID("$NetBSD: neon_mask.S,v 1.2 2012/12/18 06:14:23 matt Exp $")
 
 /*
  * __neon_loading_qword_bitmask(size_t len);
@@ -45,7 +44,7 @@
        sublt           r0, r0, #64     /* 1st dword needs MSBs cleared */
        subge           r1, r0, #128    /* 2nd dword needs MSBs cleared */
 #else
-       rsblt           r0, r0  #64     /* 1st dword needs LSBs cleared */
+       rsblt           r0, r0, #64     /* 1st dword needs LSBs cleared */
        rsbge           r1, r0, #128    /* 2nd dword needs LSBs cleared */
 #endif
        movge           r0, #0          /* 1st dword needs to left alone */



Home | Main Index | Thread Index | Old Index