diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2016-10-22 22:00:51 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-10-22 22:00:51 +0200 |
commit | 5c758bf910a1531c3e06febe1eb759de4a1b6c77 (patch) | |
tree | 7986303c353b940b41795a6e6a07ab86c0b16920 /newlib | |
parent | 941df759a2758760b60e9c6b13b401c151070fb0 (diff) | |
download | cygnal-5c758bf910a1531c3e06febe1eb759de4a1b6c77.tar.gz cygnal-5c758bf910a1531c3e06febe1eb759de4a1b6c77.tar.bz2 cygnal-5c758bf910a1531c3e06febe1eb759de4a1b6c77.zip |
towupper: Eliminate dead code
Fixes Coverity CID 59865
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/libc/ctype/towupper.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/newlib/libc/ctype/towupper.c b/newlib/libc/ctype/towupper.c index e2d80281f..1e4d0f5cb 100644 --- a/newlib/libc/ctype/towupper.c +++ b/newlib/libc/ctype/towupper.c @@ -397,9 +397,6 @@ _DEFUN(towupper,(c), wint_t c) if (c == 0x04cf) return 0x04c0; - - if (c >= 0x04f7 && c <= 0x04f9) - return (c - 1); } else if (c < 0x0600) { |