From e1982ac32aa0edf24703d210861df504409bfa91 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 4 Feb 2006 03:10:45 +0000 Subject: fix building --- libc/string/ia64/bzero.S | 2 +- libc/string/ia64/memccpy.S | 2 +- libc/string/ia64/memchr.S | 2 +- libc/string/ia64/memcmp.S | 2 +- libc/string/ia64/memcpy.S | 2 +- libc/string/ia64/memmove.S | 2 +- libc/string/ia64/memset.S | 2 +- libc/string/ia64/strchr.S | 2 +- libc/string/ia64/strcmp.S | 2 +- libc/string/ia64/strcpy.S | 2 +- libc/string/ia64/strlen.S | 2 +- libc/string/ia64/strncmp.S | 2 +- libc/string/ia64/strncpy.S | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) (limited to 'libc/string') diff --git a/libc/string/ia64/bzero.S b/libc/string/ia64/bzero.S index bcca41d5e..0e2ff09cc 100644 --- a/libc/string/ia64/bzero.S +++ b/libc/string/ia64/bzero.S @@ -32,7 +32,7 @@ Since a stf.spill f0 can store 16B in one go, we use this instruction to get peak speed. */ -#include +#include "sysdep.h" #undef ret #define dest in0 diff --git a/libc/string/ia64/memccpy.S b/libc/string/ia64/memccpy.S index 53c43c512..1afba3637 100644 --- a/libc/string/ia64/memccpy.S +++ b/libc/string/ia64/memccpy.S @@ -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 +#include "sysdep.h" #undef ret #define OP_T_THRES 16 diff --git a/libc/string/ia64/memchr.S b/libc/string/ia64/memchr.S index d7742fe8a..2bf078fe6 100644 --- a/libc/string/ia64/memchr.S +++ b/libc/string/ia64/memchr.S @@ -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 +#include "sysdep.h" #undef ret #define saved_pr r15 diff --git a/libc/string/ia64/memcmp.S b/libc/string/ia64/memcmp.S index 997dad9d4..c6ea7529b 100644 --- a/libc/string/ia64/memcmp.S +++ b/libc/string/ia64/memcmp.S @@ -33,7 +33,7 @@ and all the mux1 instructions should be replaced by plain mov's. */ -#include +#include "sysdep.h" #undef ret #define OP_T_THRES 16 diff --git a/libc/string/ia64/memcpy.S b/libc/string/ia64/memcpy.S index 34a3706e0..db019f860 100644 --- a/libc/string/ia64/memcpy.S +++ b/libc/string/ia64/memcpy.S @@ -37,7 +37,7 @@ #define USE_LFETCH #define USE_FLP -#include +#include "sysdep.h" #undef ret #define LFETCH_DIST 500 diff --git a/libc/string/ia64/memmove.S b/libc/string/ia64/memmove.S index 65f5b0383..0328f84de 100644 --- a/libc/string/ia64/memmove.S +++ b/libc/string/ia64/memmove.S @@ -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 +#include "sysdep.h" #undef ret #define OP_T_THRES 16 diff --git a/libc/string/ia64/memset.S b/libc/string/ia64/memset.S index 6754cfb88..ed27f3f31 100644 --- a/libc/string/ia64/memset.S +++ b/libc/string/ia64/memset.S @@ -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 +#include "sysdep.h" #undef ret #define dest in0 diff --git a/libc/string/ia64/strchr.S b/libc/string/ia64/strchr.S index 24001eea6..7d1a0834e 100644 --- a/libc/string/ia64/strchr.S +++ b/libc/string/ia64/strchr.S @@ -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 +#include "sysdep.h" #undef ret #define saved_lc r18 diff --git a/libc/string/ia64/strcmp.S b/libc/string/ia64/strcmp.S index 180b5524f..fe7e201c1 100644 --- a/libc/string/ia64/strcmp.S +++ b/libc/string/ia64/strcmp.S @@ -27,7 +27,7 @@ Unlike memcmp(), this function is optimized for mismatches within the first few characters. */ -#include +#include "sysdep.h" #undef ret #define s1 in0 diff --git a/libc/string/ia64/strcpy.S b/libc/string/ia64/strcpy.S index bee5bf7c2..e4a9915ca 100644 --- a/libc/string/ia64/strcpy.S +++ b/libc/string/ia64/strcpy.S @@ -31,7 +31,7 @@ shr.u tmp = r[0], sh2 // tmp = w1 >> sh2 */ -#include +#include "sysdep.h" #undef ret #define saved_lc r15 diff --git a/libc/string/ia64/strlen.S b/libc/string/ia64/strlen.S index f5a6ef044..9b27a2d1b 100644 --- a/libc/string/ia64/strlen.S +++ b/libc/string/ia64/strlen.S @@ -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 +#include "sysdep.h" #undef ret #define saved_lc r18 diff --git a/libc/string/ia64/strncmp.S b/libc/string/ia64/strncmp.S index 915ea5aa2..74011650c 100644 --- a/libc/string/ia64/strncmp.S +++ b/libc/string/ia64/strncmp.S @@ -28,7 +28,7 @@ Unlike memcmp(), this function is optimized for mismatches within the first few characters. */ -#include +#include "sysdep.h" #undef ret #define s1 in0 diff --git a/libc/string/ia64/strncpy.S b/libc/string/ia64/strncpy.S index 0a98ea4db..4f1129350 100644 --- a/libc/string/ia64/strncpy.S +++ b/libc/string/ia64/strncpy.S @@ -29,7 +29,7 @@ In this form, it assumes little endian mode. */ -#include +#include "sysdep.h" #undef ret #define saved_lc r15 -- cgit v1.2.3