Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gcc-mirror
gcc
Commits
23b92c47
Commit
23b92c47
authored
6 years ago
by
Nathan Sidwell
Browse files
Options
Download
Plain Diff
Merge trunk r263669.
From-SVN: r263670
parents
c014d996
a5a35247
devel/c++-name-lookup
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog.name-lookup
+2
-0
ChangeLog.name-lookup
libcpp/ChangeLog
+3
-0
libcpp/ChangeLog
libcpp/include/cpplib.h
+5
-5
libcpp/include/cpplib.h
with
10 additions
and
5 deletions
+10
-5
ChangeLog.name-lookup
+
2
-
0
View file @
23b92c47
2018-08-20 Nathan Sidwell <nathan@acm.org>
Merge trunk r263669.
Merge trunk r263667.
Merge trunk r263658.
...
...
This diff is collapsed.
Click to expand it.
libcpp/ChangeLog
+
3
-
0
View file @
23b92c47
2018-08-20 Nathan Sidwell <nathan@acm.org>
* include/cpplib.h: Fixup some whitespace.
(cpp_hashnode): Reduce type to 2 bit & flags to 8.
* include/cpplib.h (NODE_BUILTIN, NODE_MACRO_ARG): Delete.
Renumber others.
(enum node_type): Replace NT_MACRO with NT_USER_MACRO,
...
...
This diff is collapsed.
Click to expand it.
libcpp/include/cpplib.h
+
5
-
5
View file @
23b92c47
...
...
@@ -815,12 +815,12 @@ struct GTY(()) cpp_hashnode {
Otherwise, a NODE_OPERATOR. */
unsigned
char
rid_code
;
/* Rid code - for front ends. */
ENUM_BITFIELD
(
node_type
)
type
:
2
;
/* CPP node type. */
unsigned
int
flags
:
14
;
/* CPP flags. */
unsigned
int
flags
:
8
;
/* CPP flags. */
/*
32-
bits
of padding
on 64-bit
arch
. We could shrink
this by
making ht_identifier hold an offset to a trailing string
value.
That would require FE's expose their IDENTIFIER_NODE size
to
us. */
/*
6
bits
spare (plus another 32
on 64-bit
hosts)
. We could shrink
this by
making ht_identifier hold an offset to a trailing string
value.
That would require FE's expose their IDENTIFIER_NODE size
to
us. */
union
_cpp_hashnode_value
GTY
((
desc
(
"%1.type"
)))
value
;
};
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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