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
2a7c93ee
Commit
2a7c93ee
authored
Aug 11, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Formattign changes.
From-SVN: r12616
parent
ca4da597
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
gcc/objc/sendmsg.c
+7
-7
No files found.
gcc/objc/sendmsg.c
View file @
2a7c93ee
...
...
@@ -339,7 +339,8 @@ void __objc_update_dispatch_table_for_class (Class class)
__objc_install_premature_dtable
(
class
);
/* someone might require it... */
sarray_free
(
arr
);
/* release memory */
__objc_install_dispatch_table_for_class
(
class
);
/* could have been lazy... */
/* could have been lazy... */
__objc_install_dispatch_table_for_class
(
class
);
if
(
class
->
subclass_list
)
/* Traverse subclasses */
for
(
next
=
class
->
subclass_list
;
next
;
next
=
next
->
sibling_class
)
...
...
@@ -488,7 +489,7 @@ __objc_word_forward (id rcv, SEL op, ...)
architectural differences on some processors. i386s for
example which uses a floating point stack versus general
registers for floating point numbers. This forward routine
makes sure that GCC restores the proper return values
.
*/
makes sure that GCC restores the proper return values */
static
double
__objc_double_forward
(
id
rcv
,
SEL
op
,
...)
{
...
...
@@ -584,9 +585,11 @@ void __objc_print_dtable_stats()
#endif
);
printf
(
"arrays: %d = %ld bytes
\n
"
,
narrays
,
(
int
)
narrays
*
sizeof
(
struct
sarray
));
printf
(
"arrays: %d = %ld bytes
\n
"
,
narrays
,
(
int
)
narrays
*
sizeof
(
struct
sarray
));
total
+=
narrays
*
sizeof
(
struct
sarray
);
printf
(
"buckets: %d = %ld bytes
\n
"
,
nbuckets
,
(
int
)
nbuckets
*
sizeof
(
struct
sbucket
));
printf
(
"buckets: %d = %ld bytes
\n
"
,
nbuckets
,
(
int
)
nbuckets
*
sizeof
(
struct
sbucket
));
total
+=
nbuckets
*
sizeof
(
struct
sbucket
);
printf
(
"idxtables: %d = %ld bytes
\n
"
,
idxsize
,
(
int
)
idxsize
*
sizeof
(
void
*
));
...
...
@@ -605,6 +608,3 @@ objc_get_uninstalled_dtable()
{
return
__objc_uninstalled_dtable
;
}
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