home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / lang / ada / 2611 < prev    next >
Encoding:
Text File  |  1992-09-14  |  1.2 KB  |  34 lines

  1. Newsgroups: comp.lang.ada
  2. Path: sparky!uunet!elroy.jpl.nasa.gov!sdd.hp.com!think.com!linus!linus.mitre.org!linus!mbunix!eachus
  3. From: eachus@Dr_No.mitre.org (Robert I. Eachus)
  4. Subject: Re: pragma INLINE
  5. In-Reply-To: bwallet@apssgi.nswc.navy.mil's message of 10 Sep 92 15:43:42 GMT
  6. Message-ID: <EACHUS.92Sep14155508@Dr_No.mitre.org>
  7. Sender: news@linus.mitre.org (News Service)
  8. Nntp-Posting-Host: dr_no.mitre.org
  9. Organization: The Mitre Corp., Bedford, MA.
  10. References: <1992Sep10.154342.6109@relay.nswc.navy.mil>
  11. Date: Mon, 14 Sep 1992 20:55:08 GMT
  12. Lines: 20
  13.  
  14. In article <1992Sep10.154342.6109@relay.nswc.navy.mil> bwallet@apssgi.nswc.navy.mil (Brad Wallet) asks:
  15.  
  16.  > Can pragma INLINE be used with a function created by pragma INTERFACE to
  17.  > C code?
  18.  
  19.     It's legal, but I can't imagine that any compiler would do the
  20. inlining. (Pragma INLINE is a classic pragma in that it includes
  21. advice to the compiler--please put this in line.  Pragma INTERFACE on
  22. the other hand probably should have been a representation
  23. specification.  A compiler must obey it or reject the program.)
  24.  
  25.  
  26.  
  27. --
  28.  
  29.                     Robert I. Eachus
  30.  
  31. with STANDARD_DISCLAIMER;
  32. use  STANDARD_DISCLAIMER;
  33. function MESSAGE (TEXT: in CLEVER_IDEAS) return BETTER_IDEAS is...
  34.