(get_imp): don't inline on i386.
authorKresten Krab Thorup <krab@gcc.gnu.org>
Mon, 29 Aug 1994 15:42:11 +0000 (15:42 +0000)
committerKresten Krab Thorup <krab@gcc.gnu.org>
Mon, 29 Aug 1994 15:42:11 +0000 (15:42 +0000)
From-SVN: r7996

gcc/objc/sendmsg.c

index 442ea0fc5ebc728785101f195027df4834337a45..3e4f504212f8661b99b1a837bb367fe4839099ed 100644 (file)
@@ -68,7 +68,10 @@ nil_method(id receiver, SEL op, ...)
 }
 
 /* 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)
 {
   IMP impl;