small font in gcc online docs

2008-10-21 Thread Jonathan Grant
Hello I noticed that in the default Firefox3 configuration on my 1280x1024 display your code samples on this page are tiny, and v.hard to read: http://gcc.gnu.org/onlinedocs/gcc/Inline.html I see in the HTML this is the code causing the small font: pre.smallexample { font-size:smaller } Would

Re: thread build on solaris

2008-10-21 Thread Eric Botcazou
> I'm not sure what you are trying to say here - that it should be fixed > locally on my side at the level of the header file? Or something else? That it should be fix-included, see fixincludes/README in the source tree. -- Eric Botcazou

Re: GCC bug when using typeof

2008-10-21 Thread Joe Buck
On Mon, Oct 20, 2008 at 07:21:49PM -0700, Andrew Pinski wrote: > On Mon, Oct 20, 2008 at 7:19 PM, Peng Yu <[EMAIL PROTECTED]> wrote: > > Could you please help explain what the difference between typeof and > > decltype are? What are c++0x/g++0x modes? > > Well decltype is part of the C++0x standar

Re: GCC bug when using typeof

2008-10-21 Thread James Dennett
On Tue, Oct 21, 2008 at 9:32 AM, Joe Buck <[EMAIL PROTECTED]> wrote: > On Mon, Oct 20, 2008 at 07:21:49PM -0700, Andrew Pinski wrote: >> On Mon, Oct 20, 2008 at 7:19 PM, Peng Yu <[EMAIL PROTECTED]> wrote: >> > Could you please help explain what the difference between typeof and >> > decltype are? W

need to find functions definitions

2008-10-21 Thread `VL
Hello, ALL. I recently started to actively program using C and found that tools like ctags or cscope do not work properly for big projects. Quite ofthen they can't find function or symbol definition. The problem here is that they don't use full code parsing, but just some sort of regular expressi

Re: thread build on solaris

2008-10-21 Thread Edward Peschko
Eric, I'm looking at it, and that's one hell of an amount of work to do for the code that I would maintain. As far as I can see, it requires me to recompile/reinstall the compiler for every issue that I find.. Suppose I find fifty such issues? Is there any way to do this work with an already inst

Re: thread build on solaris

2008-10-21 Thread Eric Botcazou
> Is there any way to do this work with an already installed compiler, > ie: change the fixincludes.def on the fly and have the installed > compiler immediately pick up on the changes from the text file? You need to work in a build tree, modify fixincludes.def and follow the instructions given in

Re: What to do with hardware exception (unaligned access) ? ARM920T processor

2008-10-21 Thread Alexandre Pereira Nunes
2008/10/1 Vladimir Sterjantov <[EMAIL PROTECTED]>: > Hi! > > Processor ARM920T, chip Atmel at91rm9200. > > Simple C code: > > char c[30]; > unsigned short *pN = &c[1]; > > *pN = 0x1234; > > causes hardware exeption - memory aborts (used to implement memory > protection or virtual memory). > > We ha

Re: need to find functions definitions

2008-10-21 Thread Jonathan Wakely
2008/10/21 `VL: > 3) Any good alternatives for cscope/ctags? It seemed to me that > eclipse has some good framework, but it looks to be too much integrated with > it... You could look at these, which all provide more than ctags: http://en.wikipedia.org/wiki/OpenGrok http://synopsis.fresco.org/ ht

Re: thread build on solaris

2008-10-21 Thread Jonathan Wakely
2008/10/19 Edward Peschko > Constructs of the form > > extern enum vtype iftovt_tab[]; > > are now failing with forgiving > > error: array type has incomplete element type > > This would be fine if it was code that I controlled - but the matter > of fact is that this code is in /usr/include/sys/mod

gomp lowering question, bug in omp-low.c?

2008-10-21 Thread sje
I am looking at a couple of libgomp failures on IA64 HP-UX and I am pretty sure what the problem is and that it is in omp-low.c but I am not sure exactly where in omp-low.c it is. The tests (libgomp.c/loop-5.c and libgomp.c++/loop-8.C) only fail in 32 bit mode on IA64 HP-UX where we use the addp4

Re: thread build on solaris

2008-10-21 Thread Edward Peschko
Eric, Yes, I got that from the README. What I was looking for was a *shortcut*, ie: I compile ~1000 packages, so when one doesn't work, I trace down the reason, compose a entry in the 'live' fixincludes.def, and after I'm done with the 1000-or-so packages take all the bugs in one step back to the

c++0x N2756 Non-static data member initializers status

2008-10-21 Thread Chris
Hi, I noticed N2756 is not on the gcc c++0x status page (probably because it's new). Any ideas if and when this would be implemented? It would be life-changing. class A { public: A() { } private: int x = 5; int y = 0; };

GCC 4.4.0 Status Report (2008-10-21)

2008-10-21 Thread Mark Mitchell
Apology === This report is significantly past due. I apologize. Status == The trunk remains Stage 3, so only bug fixes and documentation changes are allowed. While the various maintainers have discretion in allowing additional changes, they should, at this point, being using that disc

Re: thread build on solaris

2008-10-21 Thread Eric Botcazou
> Yes, I got that from the README. What I was looking for was a > *shortcut*, "5. Testing fixes" precisely documents a shortcut. -- Eric Botcazou