mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-02 08:08:20 +00:00
Finish inlining for all loop conditions
This commit is contained in:
parent
0ffe823c18
commit
c5fd4932f1
3 changed files with 81 additions and 8 deletions
|
@ -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>;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue