Forgot your password?

typodupeerror

Comment: Re:Headline Is So Very Wrong (Score 1) 1193

by Ian Lance Taylor (#33982788) Attached to: How Google Avoided Paying $60 Billion In Taxes

The only way you can conclude that nearly 50% of the people in the U.S. pay not taxes is if you think that the only taxes people pay are income taxes. In fact most people pay payroll taxes, for social security and medicare. Those are about 7.5% of income for most people. 7.5% is a long way from zero.

And then there are sales taxes.

Comment: Re:Yes. And Go has the same problems (Score 1) 878

by Ian Lance Taylor (#33022362) Attached to: Google Engineer Decries Complexity of Java, C++

Go has panic/recover, which can serve the same purpose as exceptions in other language.

Go has no immutability concept, so it doesn't have half-assed one.

Yes, focusing on compile time is relevant; I think anybody who writes large C++ programs can see the point of that.

Go has a modularization system by my definition, I don't know what you mean by it.

Comment: Re:I'm thinking of contributing to GCC... (Score 1) 343

by Ian Lance Taylor (#14113567) Attached to: GCC 4.1 Released
gcc's inlining got much better in the 3.4 release, and got better still in the 4.0 release. If you still see a penalty for inlining in the 4.0 release, please file a bug report as described at http://gcc.gnu.org/bugs.html. Thanks.

As far as joining the project goes, it is easy. Sign up for the mailing lists, check out the code, and start working. Contributing a substantial patch requires signing a copyright assignment before it can be accepted.

"The way of the world is to praise dead saints and prosecute live ones." -- Nathaniel Howe

Working...