Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!rutgers!ames!ptsfa!well!msudoc!umich!jtr485 From: jtr485@umich.UUCP (Johnathan Tainter) Newsgroups: comp.lang.c Subject: Re: Parenthesis Message-ID: <115@umich.UUCP> Date: Sun, 19-Apr-87 00:39:42 EST Article-I.D.: umich.115 Posted: Sun Apr 19 00:39:42 1987 Date-Received: Fri, 24-Apr-87 01:18:25 EST References: <1100@ius2.cs.cmu.edu> Distribution: na Organization: EECS, University of Michigan Lines: 26 In article <1100@ius2.cs.cmu.edu>, edw@ius2.cs.cmu.edu.UUCP writes: > > I haven't seen any other postings about compiler control lines to > control optimization. Something like : > > #sacred :-) > a = (b + c) + f; > #endsacred I think under Draft Standard #pragma sacrosanct a = (b + c) #pragma ~sacrosanct is intended. My objection to this is that it overloads the preprocessor semantics for something inherently later in the process. Not too serious a problem but I think it could have been avoided. Just introducing pragma as a reserved word and using pragma sacrosanct; a = (b + c) pragma ~sacrosanct; appeals to me. > Eddie Wyatt --j.a.tainter