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
16892055
Commit
16892055
authored
Sep 27, 2010
by
Jie Zhang
Committed by
Jie Zhang
Sep 27, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* print-tree.c (print_node): Print in-constant-pool.
From-SVN: r164647
parent
bda38d2e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
gcc/ChangeLog
+4
-0
gcc/print-tree.c
+2
-0
No files found.
gcc/ChangeLog
View file @
16892055
2010-09-27 Jie Zhang <jie@codesourcery.com>
* print-tree.c (print_node): Print in-constant-pool.
2010-09-27 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.h (CLASS_MAX_NREGS): Also handle XCmode.
gcc/print-tree.c
View file @
16892055
...
...
@@ -439,6 +439,8 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
if
(
code
==
VAR_DECL
&&
DECL_IN_TEXT_SECTION
(
node
))
fputs
(
" in-text-section"
,
file
);
if
(
code
==
VAR_DECL
&&
DECL_IN_CONSTANT_POOL
(
node
))
fputs
(
" in-constant-pool"
,
file
);
if
(
code
==
VAR_DECL
&&
DECL_COMMON
(
node
))
fputs
(
" common"
,
file
);
if
(
code
==
VAR_DECL
&&
DECL_THREAD_LOCAL_P
(
node
))
...
...
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