Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
7c22afcb
Commit
7c22afcb
authored
Jul 15, 2005
by
Ben Elliston
Committed by
Ben Elliston
Jul 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* regex.c (TRANSLATE): Cast rhs of ternary expression to char.
From-SVN: r102050
parent
9f0076e5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
libiberty/ChangeLog
+4
-0
libiberty/regex.c
+4
-2
No files found.
libiberty/ChangeLog
View file @
7c22afcb
2005-07-15 Ben Elliston <bje@au.ibm.com>
* regex.c (TRANSLATE): Cast rhs of ternary expression to char.
2005-07-12 Ben Elliston <bje@au.ibm.com>
* floatformat.c (floatformat_to_double): Add a comment about a
...
...
libiberty/regex.c
View file @
7c22afcb
...
...
@@ -2,7 +2,9 @@
version 0.12.
(Implements POSIX draft P1003.2/D11.2, except for some of the
internationalization features.)
Copyright (C) 1993-1999, 2000, 2001, 2002 Free Software Foundation, Inc.
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
2002, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
...
...
@@ -1918,7 +1920,7 @@ static reg_errcode_t byte_compile_range (unsigned int range_start,
? (char) translate[(unsigned char) (d)] : (d))
# else
/* BYTE */
# define TRANSLATE(d) \
(translate ? (char) translate[(unsigned char) (d)] : (d))
(translate ? (char) translate[(unsigned char) (d)] : (
char) (
d))
# endif
/* WCHAR */
# endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment