mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Update IrTranslateBuiltins.cpp
This commit is contained in:
parent
dc0ec48646
commit
f5df0c2a75
1 changed files with 2 additions and 2 deletions
|
@ -959,8 +959,8 @@ static BuiltinImplResult translateBuiltinVectorNormalize(
|
|||
IrOp inv = build.inst(IrCmd::DIV_NUM, build.constDouble(1.0), mag);
|
||||
IrOp invvec = build.inst(IrCmd::NUM_TO_VEC, inv);
|
||||
|
||||
IrOp v = build.inst(IrCmd::LOAD_TVALUE, arg1, build.constInt(0), build.constTag(LUA_TVECTOR));
|
||||
IrOp norm = build.inst(IrCmd::MUL_VEC, v, invvec);
|
||||
IrOp vec = build.inst(IrCmd::LOAD_TVALUE, arg1, build.constInt(0), build.constTag(LUA_TVECTOR));
|
||||
IrOp norm = build.inst(IrCmd::MUL_VEC, vec, invvec);
|
||||
|
||||
IrOp result = build.inst(IrCmd::TAG_VECTOR, norm);
|
||||
build.inst(IrCmd::STORE_TVALUE, build.vmReg(ra), result);
|
||||
|
|
Loading…
Add table
Reference in a new issue