home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / gnu / gcc / bug / 2656 < prev    next >
Encoding:
Text File  |  1992-11-09  |  756 b   |  33 lines

  1. Newsgroups: gnu.gcc.bug
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!slayer.mit.edu!mjhostet
  3. From: mjhostet@slayer.mit.edu (Mathew J. Hostetter)
  4. Subject: gcc 2.3.1: Trivial objective C code causes gcc to crash on signal 10
  5. Message-ID: <9211080443.AA04112@slayer.MIT.EDU>
  6. Sender: gnulists@ai.mit.edu
  7. Reply-To: mjhostet@athena.mit.edu
  8. Organization: GNUs Not Usenet
  9. Distribution: gnu
  10. Date: Sat, 7 Nov 1992 18:43:25 GMT
  11. Approved: bug-gcc@prep.ai.mit.edu
  12. Lines: 19
  13.  
  14. My system is a 68040 NeXT running NeXTSTEP 3.0, gcc 2.3.1.  Compiling  
  15. this code with "gcc -x objective-c foo.c" causes gcc to crash on  
  16. signal 10.
  17.  
  18. -Mat
  19.  
  20.  
  21. typedef struct objc_class *Class;
  22.  
  23. typedef struct objc_object {
  24.   Class isa;
  25. } *id;
  26.  
  27. void
  28. foo (id x)
  29. {
  30.   [x blah];
  31. }
  32.  
  33.