Index: umsboot/libc/memcpy.c |
— | — | @@ -61,7 +61,7 @@ |
62 | 62 | _CONST _PTR src0 _AND |
63 | 63 | size_t len0) |
64 | 64 | { |
65 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 65 | +#if defined(PREFER_SIZE_OVER_SPEED) |
66 | 66 | char *dst = (char *) dst0; |
67 | 67 | char *src = (char *) src0; |
68 | 68 | |
Index: umsboot/libc/memset.c |
— | — | @@ -47,7 +47,7 @@ |
48 | 48 | int c _AND |
49 | 49 | size_t n) |
50 | 50 | { |
51 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 51 | +#if defined(PREFER_SIZE_OVER_SPEED) |
52 | 52 | char *s = (char *) m; |
53 | 53 | |
54 | 54 | while (n-- != 0) |
Index: embios/trunk/libc/memmove.c |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | _CONST _PTR src_void _AND |
66 | 66 | size_t length) |
67 | 67 | { |
68 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 68 | +#if defined(PREFER_SIZE_OVER_SPEED) |
69 | 69 | char *dst = dst_void; |
70 | 70 | _CONST char *src = src_void; |
71 | 71 | |
Index: embios/trunk/libc/strchr.c |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | int i) |
66 | 66 | { |
67 | 67 | _CONST unsigned char *s = (_CONST unsigned char *)s1; |
68 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 68 | +#if defined(PREFER_SIZE_OVER_SPEED) |
69 | 69 | unsigned char c = (unsigned int)i; |
70 | 70 | |
71 | 71 | while (*s && *s != c) |
Index: embios/trunk/libc/strlen.c |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | _DEFUN (strlen, (str), |
64 | 64 | _CONST char *str) |
65 | 65 | { |
66 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 66 | +#if defined(PREFER_SIZE_OVER_SPEED) |
67 | 67 | _CONST char *start = str; |
68 | 68 | |
69 | 69 | while (*str) |
Index: embios/trunk/libc/strcmp.c |
— | — | @@ -63,7 +63,7 @@ |
64 | 64 | _CONST char *s1 _AND |
65 | 65 | _CONST char *s2) |
66 | 66 | { |
67 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 67 | +#if defined(PREFER_SIZE_OVER_SPEED) |
68 | 68 | while (*s1 != '\0' && *s1 == *s2) |
69 | 69 | { |
70 | 70 | s1++; |
Index: embios/trunk/libc/memchr.c |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | int i _AND size_t n) |
66 | 66 | { |
67 | 67 | _CONST unsigned char *s = (_CONST unsigned char *)s1; |
68 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 68 | +#if defined(PREFER_SIZE_OVER_SPEED) |
69 | 69 | unsigned char c = (unsigned char)i; |
70 | 70 | |
71 | 71 | while (n-- > 0) |
Index: embios/trunk/libc/memcmp.c |
— | — | @@ -56,7 +56,7 @@ |
57 | 57 | _CONST _PTR m2 _AND |
58 | 58 | size_t n) |
59 | 59 | { |
60 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 60 | +#if defined(PREFER_SIZE_OVER_SPEED) |
61 | 61 | unsigned char *s1 = (unsigned char *) m1; |
62 | 62 | unsigned char *s2 = (unsigned char *) m2; |
63 | 63 | |
Index: embios/trunk/libc/strcpy.c |
— | — | @@ -63,7 +63,7 @@ |
64 | 64 | char *dst0 _AND |
65 | 65 | _CONST char *src0) |
66 | 66 | { |
67 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 67 | +#if defined(PREFER_SIZE_OVER_SPEED) |
68 | 68 | char *s = dst0; |
69 | 69 | |
70 | 70 | while ((*dst0++ = *src0++)) |
Index: embios/trunk/libc/strncmp.c |
— | — | @@ -65,7 +65,7 @@ |
66 | 66 | _CONST char *s2 _AND |
67 | 67 | size_t n) |
68 | 68 | { |
69 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 69 | +#if defined(PREFER_SIZE_OVER_SPEED) |
70 | 70 | if (n == 0) |
71 | 71 | return 0; |
72 | 72 | |
Index: embios/trunk/libc/memset.c |
— | — | @@ -47,7 +47,7 @@ |
48 | 48 | int c _AND |
49 | 49 | size_t n) |
50 | 50 | { |
51 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 51 | +#if defined(PREFER_SIZE_OVER_SPEED) |
52 | 52 | char *s = (char *) m; |
53 | 53 | |
54 | 54 | while (n-- != 0) |
Index: embios/trunk/libc/memcpy.c |
— | — | @@ -61,7 +61,7 @@ |
62 | 62 | _CONST _PTR src0 _AND |
63 | 63 | size_t len0) |
64 | 64 | { |
65 | | -#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |
| 65 | +#if defined(PREFER_SIZE_OVER_SPEED) |
66 | 66 | char *dst = (char *) dst0; |
67 | 67 | char *src = (char *) src0; |
68 | 68 | |