[qfcc] Rearrange vecexpr.r for easier debugging

Putting the most likely function to have problems at the top reduces
break-point shenanigans.
This commit is contained in:
Bill Currie 2020-03-08 16:50:39 +09:00
parent d9d321f65b
commit 695b3ba0d0

View file

@ -1,4 +1,14 @@
#include "test-harness.h"
vector t1();
vector t2(float x);
vector
t3(float x)
{
return [x, t2(9).z, x] * 2;
}
vector
t1()
{
@ -11,12 +21,6 @@ t2(float x)
return [x, x, x];
}
vector
t3(float x)
{
return [x, t2(9).z, x] * 2;
}
int
main ()
{