]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - iconvdata/iso8859-1.c
Add AArch64 HWCAPs from Linux 5.0.
[thirdparty/glibc.git] / iconvdata / iso8859-1.c
index 6aa6e3550c0e5cc989f4cf868951534f877c1d44..e5375395886213b054684dd45254a1b9a4706379 100644 (file)
@@ -1,5 +1,5 @@
 /* Conversion to and from ISO 8859-1.
-   Copyright (C) 1997-2014 Free Software Foundation, Inc.
+   Copyright (C) 1997-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
@@ -28,6 +28,7 @@
 #define DEFINE_FINI            1
 #define MIN_NEEDED_FROM                1
 #define MIN_NEEDED_TO          4
+#define ONE_DIRECTION          0
 
 /* First define the conversion function from ISO 8859-1 to UCS4.  */
 #define MIN_NEEDED_INPUT       MIN_NEEDED_FROM
@@ -50,7 +51,7 @@
 #define BODY \
   {                                                                          \
     uint32_t ch = *((const uint32_t *) inptr);                               \
-    if (__builtin_expect (ch > 0xff, 0))                                     \
+    if (__glibc_unlikely (ch > 0xff))                                        \
       {                                                                              \
        UNICODE_TAG_HANDLER (ch, 4);                                          \
                                                                              \