Add a test for end of function conditional return.

divVerent was telling Spike about such a bug in fteqcc and I though I'd
better get in an explicit test for qfcc.
This commit is contained in:
Bill Currie 2012-04-30 20:27:24 +09:00
parent 5923746983
commit 4fe7efbed8

View file

@ -1,3 +1,9 @@
float x;
void() bar =
{
if (x)
return;
}
void () foo =
{
return;