Re: [PATCH] Merge identical cases

2012-09-20 Thread Richard Guenther
On Thu, Sep 20, 2012 at 11:54 AM, Marek Polacek wrote: > In tree-ssa-operands.c in get_expr_operands we have two identical > cases, for SSA_NAME and {VAR,PARM,RESULT}_DECL. If that isn't > intentional (maybe it's clearer to split _*NAME and *_DECL--the > compiler will merge them anyway), we can m

[PATCH] Merge identical cases

2012-09-20 Thread Marek Polacek
In tree-ssa-operands.c in get_expr_operands we have two identical cases, for SSA_NAME and {VAR,PARM,RESULT}_DECL. If that isn't intentional (maybe it's clearer to split _*NAME and *_DECL--the compiler will merge them anyway), we can merge those two cases. Regtested/bootstrapped on x86_64. 2012-0