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
1fb34f17
Commit
1fb34f17
authored
May 24, 2006
by
Mike Stump
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* objc-act.c (build_next_objc_exception_stuff): Use JBLEN instead of _JBLEN.
From-SVN: r114053
parent
860d1415
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
gcc/objc/ChangeLog
+6
-2
gcc/objc/objc-act.c
+5
-5
No files found.
gcc/objc/ChangeLog
View file @
1fb34f17
2006-05-24 Mike Stump <mrs@apple.com>
* objc-act.c (build_next_objc_exception_stuff): Use JBLEN instead of _JBLEN.
2006-05-05 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR objc/27240
...
...
@@ -18,8 +22,8 @@
2005-12-14 Andrew Pinski <pinskia@physics.uc.edu>
PR objc/25360
* objc/objc-act.c (encode_type): Encode Complex types as 'j' followed
by the inner type.
* objc/objc-act.c (encode_type): Encode Complex types as 'j' followed
by the inner type.
2005-12-12 Andrew Pinski <pinskia@physics.uc.edu>
...
...
gcc/objc/objc-act.c
View file @
1fb34f17
...
...
@@ -3954,7 +3954,7 @@ objc_build_synchronized (location_t start_locus, tree mutex, tree body)
struct _objc_exception_data
{
int buf[
_
JBLEN];
int buf[JBLEN];
void *pointers[4];
}; */
...
...
@@ -3963,10 +3963,10 @@ objc_build_synchronized (location_t start_locus, tree mutex, tree body)
#ifdef TARGET_POWERPC
/* snarfed from /usr/include/ppc/setjmp.h */
#define
_
JBLEN (26 + 36 + 129 + 1)
#define JBLEN (26 + 36 + 129 + 1)
#else
/* snarfed from /usr/include/i386/{setjmp,signal}.h */
#define
_
JBLEN 18
#define JBLEN 18
#endif
static
void
...
...
@@ -3977,9 +3977,9 @@ build_next_objc_exception_stuff (void)
objc_exception_data_template
=
start_struct
(
RECORD_TYPE
,
get_identifier
(
UTAG_EXCDATA
));
/* int buf[
_
JBLEN]; */
/* int buf[JBLEN]; */
index
=
build_index_type
(
build_int_cst
(
NULL_TREE
,
_
JBLEN
-
1
));
index
=
build_index_type
(
build_int_cst
(
NULL_TREE
,
JBLEN
-
1
));
field_decl
=
create_field_decl
(
build_array_type
(
integer_type_node
,
index
),
"buf"
);
field_decl_chain
=
field_decl
;
...
...
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