From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23136 invoked by alias); 15 Nov 2006 15:07:33 -0000 Received: (qmail 23092 invoked by uid 22791); 15 Nov 2006 15:07:30 -0000 X-Spam-Check-By: sourceware.org Received: from www.nabble.com (HELO talk.nabble.com) (72.21.53.35) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 15 Nov 2006 15:07:25 +0000 Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1GkMMD-0008Rf-Lb for gcc-help@gcc.gnu.org; Wed, 15 Nov 2006 07:07:21 -0800 Message-ID: <7359255.post@talk.nabble.com> Date: Wed, 15 Nov 2006 15:07:00 -0000 From: enggakshat To: gcc-help@gcc.gnu.org Subject: Re: is the c code in gcc comiled sequentially??? In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: enggakshat@yahoo.com References: <7352560.post@talk.nabble.com> X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2006-11/txt/msg00202.txt.bz2 John Love-Jensen wrote: > > Hi enggakshat, > > What version of GCC are you using? > > What programming language from GCC are you using? Ah, by your title, it > appears you are using C -- not C++, FORTRAN, Ada, Java 1.4, D Programming > Language, or some other language supported by GCC. > > What hardware platform are you using? > > What operating system are you using? > > What command line arguments for GCC's gcc tool chain driver are you using? > > Can you provide some COMPILABLE minimal example code that reproduces the > problem? > > Thanks, > --Eljay > > > hi john, following are the specifications u asked for. -gcc version 4.0.3 (Ubuntu 4.0.3-1ubuntu5) -i m using c++ -Ubuntu 6.06 LTS -i m using a dell inspiron 6000 ->1.6 ghz intel centrino(MT) ->1 gb RAM -i really dont have a clue to what tool chain driver means.sorry for that. -eg: for the following simple code i thought its obvious that 'hello' is printed but that doesnt happen. as far as i knew the code is executed sequentially. #include using namespace std; int main() { int i=0; cout<<"hello"; while(1) { i++; } } regards, Akshat -- View this message in context: http://www.nabble.com/is-the-c-code-in-gcc-compiled-sequentially----tf2634251.html#a7359255 Sent from the gcc - Help mailing list archive at Nabble.com.