4.4 deprecation proposals

2008-06-14 Thread Joseph S. Myers
We need to consider what targets and other features, if any, to deprecate or remove in GCC 4.4. I previously suggested the deprecation or removal of protoize and fixproto , without any comments or objections being made, and have now disabled fixprot

Re: 4.4 deprecation proposals

2008-06-14 Thread Manuel López-Ibáñez
2008/6/14 Joseph S. Myers <[EMAIL PROTECTED]>: > We need to consider what targets and other features, if any, to > deprecate or remove in GCC 4.4. > > I previously suggested the deprecation or removal of protoize and > fixproto , without If we remov

Re: Constructing static variables in GIMPLE?

2008-06-14 Thread Sean Callanan
Dear mailing list: I solved my own problem. This is how I construct a static variable: -- static tree build_static(tree type, const char* name) { tree ret = NULL; ret = build_decl(VAR_DECL, get_identifier(name), type); TREE_STATIC(ret) = 1; assemble_variable(ret, 0, 0, 0); // tree dec

Re: [EMAIL PROTECTED]: Results for 4.4.0 20080612 (experimental) [trunk revision 136692] (GCC) testsuite on m32c-unknown-elf]

2008-06-14 Thread Richard Guenther
On Fri, 13 Jun 2008, DJ Delorie wrote: > > > I should start posting these to the testing list. Lots of m16c > > improvements, but some m32c regressions. I haven't tried to diagnose > > these yet, but if nobody claims it's their fault I will ;-) > > > > Anyone know why the regressions happened?