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
16f7ad42
Commit
16f7ad42
authored
May 14, 2009
by
Taras Glek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct formatting errors commited in rev 147516
From-SVN: r147547
parent
0511ddbb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
17 deletions
+19
-17
gcc/ChangeLog
+8
-6
gcc/attribs.c
+10
-10
gcc/cp/ChangeLog
+1
-1
No files found.
gcc/ChangeLog
View file @
16f7ad42
...
...
@@ -232,7 +232,7 @@
* mips-tfile.c (add_ext_symbol): Add casts to enum types.
(mark_stabs): Add casts to enum types.
(parse_stabs_common): Add casts to enum types.
2009-05-13 Adam Nemet <anemet@caviumnetworks.com>
* config/mips/mips.c (mips_print_operand) <REG, MEM, default>:
...
...
@@ -240,11 +240,13 @@
2009-05-13 Taras Glek <tglek@mozilla.com>
* attribs.c moved out attribute registration into register_attribute
* doc/plugins.texi Documented register_attribute and PLUGIN_ATTRIBUTES
* gcc-plugin.h Added forward decl for register_attribute
* plugin.c Added PLUGIN_ATTRIBUTES boilerplate
* plugin.h Added PLUGIN_ATTRIBUTES
* attribs.c (register_attribute): moved out attribute registration into
register_attribute.
* doc/plugins.texi: Documented register_attribute and PLUGIN_ATTRIBUTES.
* gcc-plugin.h: Added forward decl for register_attribute.
* gcc-plugin.h (plugins_event): Added PLUGIN_ATTRIBUTES.
* plugin.c (register_callback, invoke_plugin_callbacks): Added
PLUGIN_ATTRIBUTES boilerplate.
2009-05-14 Dave Korn <dave.korn.cygwin@gmail.com>
...
...
gcc/attribs.c
View file @
16f7ad42
...
...
@@ -194,16 +194,16 @@ init_attributes (void)
void
register_attribute
(
const
struct
attribute_spec
*
attr
)
{
struct
substring
str
;
const
void
**
slot
;
str
.
str
=
attr
->
name
;
str
.
length
=
strlen
(
str
.
str
);
slot
=
(
const
void
**
)
htab_find_slot_with_hash
(
attribute_hash
,
&
str
,
substring_hash
(
str
.
str
,
str
.
length
),
INSERT
);
gcc_assert
(
!*
slot
);
*
slot
=
attr
;
struct
substring
str
;
const
void
**
slot
;
str
.
str
=
attr
->
name
;
str
.
length
=
strlen
(
str
.
str
);
slot
=
(
const
void
**
)
htab_find_slot_with_hash
(
attribute_hash
,
&
str
,
substring_hash
(
str
.
str
,
str
.
length
),
INSERT
);
gcc_assert
(
!*
slot
);
*
slot
=
attr
;
}
/* Return the spec for the attribute named NAME. */
...
...
gcc/cp/ChangeLog
View file @
16f7ad42
...
...
@@ -7,7 +7,7 @@
2009-05-13 David Mandelin <dmandelin@mozilla.com>:
* decl.c (duplicate_decls): Preserve parameter attributes.
* decl.c (duplicate_decls): Preserve parameter attributes.
2009-05-10 Jan Hubicka <jh@suse.cz>
...
...
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