This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]