Re: Missing break statement after transformCallStmt in transformStmt

2018-03-06 Thread Michael Paquier
On Wed, Mar 07, 2018 at 11:30:53AM +0530, Ashutosh Bapat wrote: > Commit 76b6aa41f41db66004b1c430f17a546d4102fbe7 a new case for > CallStmt in transformStmt but forgot to add a break statement at the > end of the case. This doesn't create any problems since the default > case to which it continues

Missing break statement after transformCallStmt in transformStmt

2018-03-06 Thread Ashutosh Bapat
HI, Commit 76b6aa41f41db66004b1c430f17a546d4102fbe7 a new case for CallStmt in transformStmt but forgot to add a break statement at the end of the case. This doesn't create any problems since the default case to which it continues without break doesn't change the result. But this is going to cause