mirror of
https://github.com/corda/corda.git
synced 2025-02-11 21:26:23 +00:00
set Value::high when appropriate in MyCompiler::initLocalsFromLogicalIp
This commit is contained in:
parent
175ec1ff48
commit
0fbe89c147
@ -4835,6 +4835,10 @@ class MyCompiler: public Compiler {
|
||||
Local* local = e->localsBefore + i;
|
||||
if (local->value) {
|
||||
initLocal(1, i);
|
||||
|
||||
if (i > 0 and local->value->high == local[-1].value) {
|
||||
c.locals[i].value->high = c.locals[i - 1].value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user