This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: Results for g++ 3.1 application testing on i686-pc-linux-gnu
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: Gabriel Dos Reis <gdr at codesourcery dot com>
- Cc: stephen dot webb at bregmasoft dot com, gcc at gcc dot gnu dot org, libstdc++ at gcc dot gnu dot org
- Date: Tue, 5 Mar 2002 14:08:56 -0800 (PST)
- Subject: Re: Results for g++ 3.1 application testing on i686-pc-linux-gnu
> Then, may I propose to turn __WORD_BIT into an enum so as to meet the
> zero-overhead criterion.
Sounds like the most elegant solution yet proposed. I'm all for it.
These are the other problem children, from src/stl-inst.cc:
const int __stl_threshold = 16;
const int __stl_chunk_size = 7;
const int __WORD_BIT = int(CHAR_BIT*sizeof(unsigned int));
const _Rb_tree_Color_type _S_rb_tree_red = false;
const _Rb_tree_Color_type _S_rb_tree_black = true;
-benjamin