Re: ObjC: avoid creating temporary nodes just to compare method signatures

2011-04-12 Thread Mike Stump
On Apr 12, 2011, at 11:04 AM, Nicola Pero wrote: > This patch fixes another inefficiency in the Objective-C compiler. > Ok to commit ? Ok.

ObjC: avoid creating temporary nodes just to compare method signatures

2011-04-12 Thread Nicola Pero
This patch fixes another inefficiency in the Objective-C compiler. When it was comparing method signatures, it would copy all the argument types into some temporary node chains, and then compare these copies. The copies are then thrown away. It all seems really pointless (since you can just acce