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
8206c799
Commit
8206c799
authored
Oct 11, 2001
by
Zack Weinberg
Committed by
Zack Weinberg
Oct 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cpplex.c (digraph_spellings, token_spellings): Make static.
From-SVN: r46201
parent
4d6d06a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/cpplex.c
+3
-3
No files found.
gcc/ChangeLog
View file @
8206c799
2001
-
10
-
11
Zack
Weinberg
<
zack
@codesourcery
.
com
>
*
cpplex
.
c
(
digraph_spellings
,
token_spellings
)
:
Make
static
.
2001
-
10
-
11
Franz
Sirl
<
Franz
.
Sirl
-
kernel
@lauterbach
.
com
>
*
unroll
.
c
(
loop_iterations
)
:
Fixup
last
patch
.
...
...
gcc/cpplex.c
View file @
8206c799
...
...
@@ -69,12 +69,12 @@ struct token_spelling
const
unsigned
char
*
name
;
};
const
unsigned
char
*
digraph_spellings
[]
=
{
U"%:"
,
U"%:%:"
,
U"<:"
,
U":>"
,
U"<%"
,
U"%>"
};
static
const
unsigned
char
*
const
digraph_spellings
[]
=
{
U"%:"
,
U"%:%:"
,
U"<:"
,
U":>"
,
U"<%"
,
U"%>"
};
#define OP(e, s) { SPELL_OPERATOR, U s },
#define TK(e, s) { s, U STRINGX (e) },
const
struct
token_spelling
token_spellings
[
N_TTYPES
]
=
{
TTYPE_TABLE
};
static
const
struct
token_spelling
token_spellings
[
N_TTYPES
]
=
{
TTYPE_TABLE
};
#undef OP
#undef TK
...
...
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