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
7e2eb697
Commit
7e2eb697
authored
Apr 30, 1995
by
Per Bothner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove PARSE_GETC. Add comment about "@ ".
From-SVN: r9551
parent
92c874f7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/cpplib.h
+5
-2
No files found.
gcc/cpplib.h
View file @
7e2eb697
...
@@ -160,11 +160,14 @@ struct cpp_buffer {
...
@@ -160,11 +160,14 @@ struct cpp_buffer {
/* True if buffer contains escape sequences.
/* True if buffer contains escape sequences.
Currently there are are only two kind:
Currently there are are only two kind:
"@-" means following identifier should not be macro-expanded.
"@-" means following identifier should not be macro-expanded.
"@ " means a token-separator. This turns into " " in final output
if not stringizing and needed to separate tokens; otherwise nothing.
"@@" means a normal '@'. */
"@@" means a normal '@'. */
char
has_escapes
;
char
has_escapes
;
};
};
struct
cpp_pending
;
/* Forward declaration - for C++. */
struct
cpp_pending
;
/* Forward declaration - for C++. */
struct
file_name_map_list
;
typedef
struct
assertion_hashnode
ASSERTION_HASHNODE
;
typedef
struct
assertion_hashnode
ASSERTION_HASHNODE
;
#define ASSERTION_HASHSIZE 37
#define ASSERTION_HASHSIZE 37
...
@@ -314,6 +317,8 @@ struct cpp_options {
...
@@ -314,6 +317,8 @@ struct cpp_options {
/* Name of output file, for error messages. */
/* Name of output file, for error messages. */
char
*
out_fname
;
char
*
out_fname
;
struct
file_name_map_list
*
map_list
;
/* Non-0 means -v, so print the full set of include dirs. */
/* Non-0 means -v, so print the full set of include dirs. */
char
verbose
;
char
verbose
;
...
@@ -496,8 +501,6 @@ struct cpp_options {
...
@@ -496,8 +501,6 @@ struct cpp_options {
#define CPP_PEDANTIC(PFILE) (CPP_OPTIONS (PFILE)->pedantic)
#define CPP_PEDANTIC(PFILE) (CPP_OPTIONS (PFILE)->pedantic)
#define CPP_PRINT_DEPS(PFILE) (CPP_OPTIONS (PFILE)->print_deps)
#define CPP_PRINT_DEPS(PFILE) (CPP_OPTIONS (PFILE)->print_deps)
#define PARSE_GETC(IN) ((IN)-> cur < (IN)->limit || ((IN)->cur = (IN)->token_buffer, (IN)->underflow (IN) != EOF_TOKEN) ? *(IN)->cur++ : EOF)
/* Name under which this program was invoked. */
/* Name under which this program was invoked. */
extern
char
*
progname
;
extern
char
*
progname
;
...
...
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