source: trunk/src/gcc/libobjc/sendmsg.c@ 1706

Last change on this file since 1706 was 1392, checked in by bird, 22 years ago

This commit was generated by cvs2svn to compensate for changes in r1391,
which included commits to RCS files with non-trunk default branches.

  • Property cvs2svn:cvs-rev set to 1.1.1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 18.8 KB
Line 
1/* GNU Objective C Runtime message lookup
2 Copyright (C) 1993, 1995, 1996, 1997, 1998,
3 2001, 2002 Free Software Foundation, Inc.
4 Contributed by Kresten Krab Thorup
5
6This file is part of GNU CC.
7
8GNU CC is free software; you can redistribute it and/or modify it under the
9terms of the GNU General Public License as published by the Free Software
10Foundation; either version 2, or (at your option) any later version.
11
12GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15details.
16
17You should have received a copy of the GNU General Public License along with
18GNU CC; see the file COPYING. If not, write to the Free Software
19Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22/* As a special exception, if you link this library with files compiled with
23 GCC to produce an executable, this does not cause the resulting executable
24 to be covered by the GNU General Public License. This exception does not
25 however invalidate any other reasons why the executable file might be
26 covered by the GNU General Public License. */
27
28#include "tconfig.h"
29#include "runtime.h"
30#include "sarray.h"
31#include "encoding.h"
32#include "runtime-info.h"
33
34/* this is how we hack STRUCT_VALUE to be 1 or 0 */
35#define gen_rtx(args...) 1
36#define gen_rtx_MEM(args...) 1
37#define gen_rtx_REG(args...) 1
38#define rtx int
39
40#if ! defined (STRUCT_VALUE) || STRUCT_VALUE == 0