diff options
author | Richard Stallman <rms@gnu.org> | 1992-10-31 20:41:23 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-10-31 20:41:23 +0000 |
commit | 152551c656050f4b5d939868aad65bb56e89c1de (patch) | |
tree | eca1417cf386c0976785b8af5e7498b36590fd7e /gcc | |
parent | 71cd5224b3f1f86a9b5f5701dd5e1e92e8535fd0 (diff) | |
download | gcc-152551c656050f4b5d939868aad65bb56e89c1de.zip gcc-152551c656050f4b5d939868aad65bb56e89c1de.tar.gz gcc-152551c656050f4b5d939868aad65bb56e89c1de.tar.bz2 |
(OBJC_SELECTORS_WITHOUT_LABELS): Define by default.
From-SVN: r2662
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/objc/objc-act.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 982f6e4..1d38b83 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -47,6 +47,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "flags.h" #include "objc-actions.h" #include "input.h" + +/* The GNU run time requires the selectors in a vector + so it can store the operation numbers in them. */ +#ifndef NEXT_OBJC_RUNTIME +#define OBJC_SELECTORS_WITHOUT_LABELS +#endif /* Define the special tree codes that we use. */ |