mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #13449 from ethereum/fix-undefined-order-of-evaluation
[Tiny] Fix undefined order of evaluation
This commit is contained in:
commit
8ea483d532
@ -82,7 +82,8 @@ pair<YulString, BuiltinFunctionForEVM> createEVMFunction(
|
||||
_assembly.appendInstruction(_instruction);
|
||||
};
|
||||
|
||||
return {f.name, move(f)};
|
||||
YulString name = f.name;
|
||||
return {name, move(f)};
|
||||
}
|
||||
|
||||
pair<YulString, BuiltinFunctionForEVM> createFunction(
|
||||
|
Loading…
Reference in New Issue
Block a user