Commit 2691a622 by Kresten Krab Thorup

(get_imp): don't inline on i386.

From-SVN: r7996
parent f529652c
...@@ -68,7 +68,10 @@ nil_method(id receiver, SEL op, ...) ...@@ -68,7 +68,10 @@ nil_method(id receiver, SEL op, ...)
} }
/* Given a class and selector, return the selector's implementation. */ /* Given a class and selector, return the selector's implementation. */
__inline__ IMP #ifndef i386
__inline__ /* this is broken on i386... */
#endif
IMP
get_imp (Class* class, SEL sel) get_imp (Class* class, SEL sel)
{ {
IMP impl; IMP impl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment