home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / modula2 / 1730 < prev    next >
Encoding:
Text File  |  1993-01-24  |  889 b   |  25 lines

  1. Newsgroups: comp.lang.modula2
  2. Path: sparky!uunet!spool.mu.edu!yale.edu!yale!gumby!destroyer!cs.ubc.ca!uw-beaver!news.tek.com!psgrain!m2xenix!agora!robart
  3. From: robart@agora.rain.com (Joe Bob)
  4. Subject: Re: Re: JPI Compiler bug?
  5. Message-ID: <C1BBtv.CEv@agora.rain.com>
  6. Organization: a gora
  7. References: <27679098395@olk.cl-hh.comlink.de>
  8. Date: Sat, 23 Jan 1993 15:17:51 GMT
  9. Lines: 14
  10.  
  11. In article <27679098395@olk.cl-hh.comlink.de> marcus_olk@cl-hh.comlink.de writes:
  12. >
  13. >But what does adr^ mean? adr^ should be the referenced type adr points
  14. >at. This might be a RECORD structre or an ARRAY or...
  15.  
  16.   Right.  But in this case adr was an ADDRESS, so adr^ is ADDRESS^,
  17. which is WORD.  So TSIZE(adr^) = TSIZE(WORD).
  18.  
  19. >So: what does NEW(adr) or ALLOCATE(adr, SIZE(adr^)) respectively, exactly do?
  20.  
  21.  
  22.   SIZE and TSIZE are compile-time operations.  I think this is the point
  23. that people are missing.
  24.  
  25.