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
faaa30fe
Commit
faaa30fe
authored
Sep 12, 2002
by
Nicola Pero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tidied up the declaration and usage of nil_method
From-SVN: r57074
parent
d90ad6d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
libobjc/sendmsg.c
+3
-3
No files found.
libobjc/sendmsg.c
View file @
faaa30fe
...
...
@@ -76,7 +76,7 @@ static id
__objc_block_forward
(
id
,
SEL
,
...);
static
Method_t
search_for_method_in_hierarchy
(
Class
class
,
SEL
sel
);
Method_t
search_for_method_in_list
(
MethodList_t
list
,
SEL
op
);
id
nil_method
(
id
,
SEL
,
...
);
id
nil_method
(
id
,
SEL
);
/* Given a selector, return the proper forwarding implementation. */
__inline__
...
...
@@ -197,7 +197,7 @@ objc_msg_lookup (id receiver, SEL op)
return
result
;
}
else
return
nil_method
;
return
(
IMP
)
nil_method
;
}
IMP
...
...
@@ -206,7 +206,7 @@ objc_msg_lookup_super (Super_t super, SEL sel)
if
(
super
->
self
)
return
get_imp
(
super
->
class
,
sel
);
else
return
nil_method
;
return
(
IMP
)
nil_method
;
}
int
method_get_sizeof_arguments
(
Method
*
);
...
...
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