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
13fa1171
Commit
13fa1171
authored
Dec 05, 2008
by
Michael Meissner
Committed by
Michael Meissner
Dec 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PR c/38416, make pragma_kind 8 bits
From-SVN: r142493
parent
00ad9a06
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/c-parser.c
+1
-1
No files found.
gcc/ChangeLog
View file @
13fa1171
2008
-
12
-
05
Michael
Meissner
<
meissner
@linux
.
vnet
.
ibm
.
com
>
PR
c
/
38416
*
c
-
parser
.
c
(
struct
c_token
)
:
Make
pragma_kind
8
bits
.
2008
-
12
-
05
Jakub
Jelinek
<
jakub
@redhat
.
com
>
2008
-
12
-
05
Jakub
Jelinek
<
jakub
@redhat
.
com
>
PR
middle
-
end
/
37248
PR
middle
-
end
/
37248
gcc/c-parser.c
View file @
13fa1171
...
@@ -148,7 +148,7 @@ typedef struct c_token GTY (())
...
@@ -148,7 +148,7 @@ typedef struct c_token GTY (())
ENUM_BITFIELD
(
rid
)
keyword
:
8
;
ENUM_BITFIELD
(
rid
)
keyword
:
8
;
/* If this token is a CPP_PRAGMA, this indicates the pragma that
/* If this token is a CPP_PRAGMA, this indicates the pragma that
was seen. Otherwise it is PRAGMA_NONE. */
was seen. Otherwise it is PRAGMA_NONE. */
ENUM_BITFIELD
(
pragma_kind
)
pragma_kind
:
7
;
ENUM_BITFIELD
(
pragma_kind
)
pragma_kind
:
8
;
/* The value associated with this token, if any. */
/* The value associated with this token, if any. */
tree
value
;
tree
value
;
/* The location at which this token was found. */
/* The location at which this token was found. */
...
...
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