/* PR c/7160 *//* Verify that the register-to-stack converter properly handles branches without return value containing function calls. */externintgi;externintfoo1(int,int);externvoidfoo2(int,int);externfloatfoo3(int);floatbar(inti1,inti2){inti3;if(i2){i3=foo1(i1,gi);foo2(i1,i3);}elsereturnfoo3(i2);}