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
2ead7928
Commit
2ead7928
authored
Jan 14, 2015
by
Aldy Hernandez
Committed by
Aldy Hernandez
Jan 14, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+ * lto-cgraph: Update function comments for
+ lto_symtab_encoder_encode_*. From-SVN: r219607
parent
3b6e42f9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
gcc/ChangeLog
+5
-0
gcc/lto-cgraph.c
+5
-5
No files found.
gcc/ChangeLog
View file @
2ead7928
2015-01-14 Aldy Hernandez <aldyh@redhat.com>
* lto-cgraph: Update function comments for
lto_symtab_encoder_encode_*.
2015-01-14 Ilya Verbin <ilya.verbin@intel.com>
* Makefile.in (site.exp): Do not set ENABLE_LTO.
...
...
gcc/lto-cgraph.c
View file @
2ead7928
...
...
@@ -193,7 +193,7 @@ lto_symtab_encoder_delete_node (lto_symtab_encoder_t encoder,
}
/* Return TRUE if we should encode
initializer
of NODE (if any). */
/* Return TRUE if we should encode
the body
of NODE (if any). */
bool
lto_symtab_encoder_encode_body_p
(
lto_symtab_encoder_t
encoder
,
...
...
@@ -203,7 +203,7 @@ lto_symtab_encoder_encode_body_p (lto_symtab_encoder_t encoder,
return
encoder
->
nodes
[
index
].
body
;
}
/*
Return TRUE if we should encode body of NODE (if any)
. */
/*
Specify that we encode the body of NODE in this partition
. */
static
void
lto_set_symtab_encoder_encode_body
(
lto_symtab_encoder_t
encoder
,
...
...
@@ -226,7 +226,7 @@ lto_symtab_encoder_encode_initializer_p (lto_symtab_encoder_t encoder,
return
encoder
->
nodes
[
index
].
initializer
;
}
/*
Return TRUE if
we should encode initializer of NODE (if any). */
/*
Specify that
we should encode initializer of NODE (if any). */
static
void
lto_set_symtab_encoder_encode_initializer
(
lto_symtab_encoder_t
encoder
,
...
...
@@ -236,7 +236,7 @@ lto_set_symtab_encoder_encode_initializer (lto_symtab_encoder_t encoder,
encoder
->
nodes
[
index
].
initializer
=
true
;
}
/* Return TRUE if
we should encode initializer of NODE (if any)
. */
/* Return TRUE if
NODE is in this partition
. */
bool
lto_symtab_encoder_in_partition_p
(
lto_symtab_encoder_t
encoder
,
...
...
@@ -248,7 +248,7 @@ lto_symtab_encoder_in_partition_p (lto_symtab_encoder_t encoder,
return
encoder
->
nodes
[
index
].
in_partition
;
}
/*
Return TRUE if we should encode body of NODE (if any)
. */
/*
Specify that NODE is in this partition
. */
void
lto_set_symtab_encoder_in_partition
(
lto_symtab_encoder_t
encoder
,
...
...
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