This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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: [tree-ssa] dead const/pure/alloca call removal


Falk Hueffner <falk.hueffner@student.uni-tuebingen.de> writes:

> Jan Hubicka <jh@suse.cz> writes:
>
>> + /* Return false when CALL can be removed when it's return value is dead.
>               ^ true?
>
> I would formulate it like this:
>
> Return true if CALL can be removed in case its return value is dead.

Still better English, given your explanation of the return value:

  Return true if CALL cannot be removed even if its return value
  is dead (i.e. CALL must be assumed to have side effects).

>> +    In addition to const and pure functions we may elliminate alloca 
>> +    builtin too.  */
>> + static bool
>> + call_usefull_p (tree call)
>
> It's spelled "useful" I think...

Yes.  In your revised patch, you fixed the spelling of the function
declaration, but not the spelling at the call site.

Another spelling error: "eliminate" not "elliminate".  (When in doubt,
assume only one l in English.)

zw


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