svn commit: trunk/uClibc/libc/string/ia64

vapier at uclibc.org vapier at uclibc.org
Sat Feb 4 03:10:46 UTC 2006


Author: vapier
Date: 2006-02-03 19:10:45 -0800 (Fri, 03 Feb 2006)
New Revision: 13830

Log:
fix building

Modified:
   trunk/uClibc/libc/string/ia64/bzero.S
   trunk/uClibc/libc/string/ia64/memccpy.S
   trunk/uClibc/libc/string/ia64/memchr.S
   trunk/uClibc/libc/string/ia64/memcmp.S
   trunk/uClibc/libc/string/ia64/memcpy.S
   trunk/uClibc/libc/string/ia64/memmove.S
   trunk/uClibc/libc/string/ia64/memset.S
   trunk/uClibc/libc/string/ia64/strchr.S
   trunk/uClibc/libc/string/ia64/strcmp.S
   trunk/uClibc/libc/string/ia64/strcpy.S
   trunk/uClibc/libc/string/ia64/strlen.S
   trunk/uClibc/libc/string/ia64/strncmp.S
   trunk/uClibc/libc/string/ia64/strncpy.S


Changeset:
Modified: trunk/uClibc/libc/string/ia64/bzero.S
===================================================================
--- trunk/uClibc/libc/string/ia64/bzero.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/bzero.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -32,7 +32,7 @@
    Since a stf.spill f0 can store 16B in one go, we use this instruction
    to get peak speed.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define dest		in0

Modified: trunk/uClibc/libc/string/ia64/memccpy.S
===================================================================
--- trunk/uClibc/libc/string/ia64/memccpy.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/memccpy.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -31,7 +31,7 @@
    This implementation assumes that it is safe to do read ahead
    in the src block, without getting beyond its limit.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define OP_T_THRES 	16

Modified: trunk/uClibc/libc/string/ia64/memchr.S
===================================================================
--- trunk/uClibc/libc/string/ia64/memchr.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/memchr.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -40,7 +40,7 @@
    All the loops in this function could have had the internal branch removed
    if br.ctop and br.cloop could be predicated :-(.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define saved_pr	r15

Modified: trunk/uClibc/libc/string/ia64/memcmp.S
===================================================================
--- trunk/uClibc/libc/string/ia64/memcmp.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/memcmp.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -33,7 +33,7 @@
 
    and all the mux1 instructions should be replaced by plain mov's.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define OP_T_THRES 	16

Modified: trunk/uClibc/libc/string/ia64/memcpy.S
===================================================================
--- trunk/uClibc/libc/string/ia64/memcpy.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/memcpy.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -37,7 +37,7 @@
 
 #define USE_LFETCH
 #define USE_FLP
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define LFETCH_DIST     500

Modified: trunk/uClibc/libc/string/ia64/memmove.S
===================================================================
--- trunk/uClibc/libc/string/ia64/memmove.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/memmove.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -33,7 +33,7 @@
    sh1 must be computed using an extra instruction: sub sh1 = 64, sh1
    or the UM.be bit should be cleared at the beginning and set at the end.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define OP_T_THRES 	16

Modified: trunk/uClibc/libc/string/ia64/memset.S
===================================================================
--- trunk/uClibc/libc/string/ia64/memset.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/memset.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -33,7 +33,7 @@
    Since a stf.spill f0 can store 16B in one go, we use this instruction
    to get peak speed when value = 0.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define dest		in0

Modified: trunk/uClibc/libc/string/ia64/strchr.S
===================================================================
--- trunk/uClibc/libc/string/ia64/strchr.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/strchr.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -30,7 +30,7 @@
    This implementation assumes little endian mode.  For big endian mode,
    the instruction czx1.r should be replaced by czx1.l.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define saved_lc	r18

Modified: trunk/uClibc/libc/string/ia64/strcmp.S
===================================================================
--- trunk/uClibc/libc/string/ia64/strcmp.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/strcmp.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -27,7 +27,7 @@
    Unlike memcmp(), this function is optimized for mismatches within the
    first few characters.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define s1		in0

Modified: trunk/uClibc/libc/string/ia64/strcpy.S
===================================================================
--- trunk/uClibc/libc/string/ia64/strcpy.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/strcpy.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -31,7 +31,7 @@
 	shr.u   tmp = r[0], sh2   	// tmp = w1 >> sh2
  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define saved_lc	r15

Modified: trunk/uClibc/libc/string/ia64/strlen.S
===================================================================
--- trunk/uClibc/libc/string/ia64/strlen.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/strlen.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -33,7 +33,7 @@
    This implementation assumes little endian mode.  For big endian mode,
    the instruction czx1.r should be replaced by czx1.l.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define saved_lc	r18

Modified: trunk/uClibc/libc/string/ia64/strncmp.S
===================================================================
--- trunk/uClibc/libc/string/ia64/strncmp.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/strncmp.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -28,7 +28,7 @@
    Unlike memcmp(), this function is optimized for mismatches within the
    first few characters.  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define s1		in0

Modified: trunk/uClibc/libc/string/ia64/strncpy.S
===================================================================
--- trunk/uClibc/libc/string/ia64/strncpy.S	2006-02-04 03:04:11 UTC (rev 13829)
+++ trunk/uClibc/libc/string/ia64/strncpy.S	2006-02-04 03:10:45 UTC (rev 13830)
@@ -29,7 +29,7 @@
    In this form, it assumes little endian mode.
  */
 
-#include <sysdep.h>
+#include "sysdep.h"
 #undef ret
 
 #define saved_lc	r15




More information about the uClibc-cvs mailing list