mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
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:
parent
5923746983
commit
4fe7efbed8
1 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
float x;
|
||||
void() bar =
|
||||
{
|
||||
if (x)
|
||||
return;
|
||||
}
|
||||
void () foo =
|
||||
{
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue