diff options
Diffstat (limited to 'newlib/libc/machine/arc/strchr.S')
-rw-r--r-- | newlib/libc/machine/arc/strchr.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/machine/arc/strchr.S b/newlib/libc/machine/arc/strchr.S index 4c320a8d2..1bf6db97d 100644 --- a/newlib/libc/machine/arc/strchr.S +++ b/newlib/libc/machine/arc/strchr.S @@ -49,7 +49,7 @@ Each byte in Y is 0x80 if the the corresponding byte in W is zero, otherwise that byte of Y is 0. */ -#if defined (__ARC601__) || !defined (__Xbarrel_shifter) +#if defined (__ARC601__) || !defined (__ARC_BARREL_SHIFTER__) ENTRY (strchr) bmsk.f r2,r0,1 mov_s r3,0x01010101 @@ -203,6 +203,6 @@ ENTRY (strchr) add.eq r0,r0,1 #endif /* ENDIAN */ ENDFUNC (strchr) -#endif /* __ARC601__ || !__Xbarrel_shifter */ +#endif /* __ARC601__ || !__ARC_BARREL_SHIFTER__ */ #endif /* !__OPTIMIZE_SIZE__ && !PREFER_SIZE_OVER_SPEED */ |