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
7703295f
Commit
7703295f
authored
Jul 20, 2010
by
Richard Henderson
Committed by
Richard Henderson
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* vxworks.c (vxworks_emutls_var_fields): Pass locus to build_decls.
From-SVN: r162356
parent
16737e76
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/ChangeLog
+4
-0
gcc/config/vxworks.c
+6
-6
No files found.
gcc/ChangeLog
View file @
7703295f
2010-07-20 Richard Henderson <rth@redhat.com>
* vxworks.c (vxworks_emutls_var_fields): Pass locus to build_decls.
2010-07-20 Bernd Schmidt <bernds@codesourcery.com>
* config/arm/arm.md (thumb1_addsi3): Add alternative and split for
...
...
gcc/config/vxworks.c
View file @
7703295f
...
...
@@ -70,19 +70,19 @@ vxworks_emutls_var_fields (tree type, tree *name)
*
name
=
get_identifier
(
"__tls_var"
);
field
=
build_decl
(
FIELD_DECL
,
get_identifier
(
"size"
)
,
unsigned_type_node
);
field
=
build_decl
(
BUILTINS_LOCATION
,
FIELD_DECL
,
get_identifier
(
"size"
),
unsigned_type_node
);
DECL_CONTEXT
(
field
)
=
type
;
next_field
=
field
;
field
=
build_decl
(
FIELD_DECL
,
get_identifier
(
"module_id"
)
,
unsigned_type_node
);
field
=
build_decl
(
BUILTINS_LOCATION
,
FIELD_DECL
,
get_identifier
(
"module_id"
),
unsigned_type_node
);
DECL_CONTEXT
(
field
)
=
type
;
DECL_CHAIN
(
field
)
=
next_field
;
next_field
=
field
;
field
=
build_decl
(
FIELD_DECL
,
get_identifier
(
"offset"
)
,
unsigned_type_node
);
field
=
build_decl
(
BUILTINS_LOCATION
,
FIELD_DECL
,
get_identifier
(
"offset"
),
unsigned_type_node
);
DECL_CONTEXT
(
field
)
=
type
;
DECL_CHAIN
(
field
)
=
next_field
;
...
...
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