aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc
diff options
context:
space:
mode:
authorBernd Schmidt <bernds@cygnus.co.uk>1999-09-24 10:07:04 +0000
committerBernd Schmidt <crux@gcc.gnu.org>1999-09-24 10:07:04 +0000
commit26db82d823eeb8de6d630e24eed02e3c6162371b (patch)
treeb6a1620ccaaf62ffd2a78f363d4bc02b528fabe8 /gcc/objc
parentfd903acc8077c9a197f2c2e05104579290453bcd (diff)
downloadgcc-26db82d823eeb8de6d630e24eed02e3c6162371b.zip
gcc-26db82d823eeb8de6d630e24eed02e3c6162371b.tar.gz
gcc-26db82d823eeb8de6d630e24eed02e3c6162371b.tar.bz2
Allow to distinguish between three classes of builtin functions
From-SVN: r29653
Diffstat (limited to 'gcc/objc')
-rw-r--r--gcc/objc/objc-act.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c
index 4d8c840..5cb797b 100644
--- a/gcc/objc/objc-act.c
+++ b/gcc/objc/objc-act.c
@@ -1226,7 +1226,7 @@ synth_module_prologue ()
pushdecl (umsg_decl);
}
else
- umsg_decl = builtin_function (TAG_MSGSEND, temp_type, NOT_BUILT_IN, 0);
+ umsg_decl = builtin_function (TAG_MSGSEND, temp_type, 0, NOT_BUILT_IN, 0);
/* id objc_msgSendSuper (struct objc_super *, SEL, ...); */
@@ -1237,7 +1237,7 @@ synth_module_prologue ()
NULL_TREE)));
umsg_super_decl = builtin_function (TAG_MSGSENDSUPER,
- temp_type, NOT_BUILT_IN, 0);
+ temp_type, 0, NOT_BUILT_IN, 0);
/* id objc_getClass (const char *); */
@@ -1248,12 +1248,12 @@ synth_module_prologue ()
NULL_TREE)));
objc_get_class_decl
- = builtin_function (TAG_GETCLASS, temp_type, NOT_BUILT_IN, 0);
+ = builtin_function (TAG_GETCLASS, temp_type, 0, NOT_BUILT_IN, 0);
/* id objc_getMetaClass (const char *); */
objc_get_meta_class_decl
- = builtin_function (TAG_GETMETACLASS, temp_type, NOT_BUILT_IN, 0);
+ = builtin_function (TAG_GETMETACLASS, temp_type, 0, NOT_BUILT_IN, 0);
/* static SEL _OBJC_SELECTOR_TABLE[]; */