Finish inlining for all loop conditions

This commit is contained in:
Sei Lisa 2019-01-06 01:59:36 +01:00
parent 0ffe823c18
commit c5fd4932f1
3 changed files with 81 additions and 8 deletions

View file

@ -18,7 +18,17 @@ vector f3(integer f3p1, string f3p2) inline
}
@x;
if (f3p2 != "") return <1,1,1>;
do ; while (f4());
while (f4()) ;
for (f3p1=0; f4(); f3p1++, llDie())
{
integer f3p1 = llGetNumberOfPrims();
llOwnerSay((string)f3p1);
}
return <0,0,0>;
}