Fix swaps and other misoptimizations

This undoes 454d44e85f
This commit is contained in:
Sei Lisa 2019-01-11 02:07:54 +01:00
parent c3bb056f05
commit 42f47d38f0
3 changed files with 18 additions and 9 deletions

View file

@ -2,6 +2,9 @@ default
{
state_entry()
{
llOwnerSay("x" + "3");
integer b = 3;
integer c = b;
integer d = c;
llOwnerSay("x" + (string)d);
}
}