mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
functional: fix std::move usage in Factory::constant
This commit is contained in:
parent
785bd44da7
commit
bc5d9d1bd3
|
@ -537,7 +537,8 @@ namespace Functional {
|
||||||
return add(Fn::memory_write, mem.sort(), {mem, addr, data});
|
return add(Fn::memory_write, mem.sort(), {mem, addr, data});
|
||||||
}
|
}
|
||||||
Node constant(RTLIL::Const value) {
|
Node constant(RTLIL::Const value) {
|
||||||
return add(IR::NodeData(Fn::constant, std::move(value)), Sort(value.size()), {});
|
int s = value.size();
|
||||||
|
return add(IR::NodeData(Fn::constant, std::move(value)), Sort(s), {});
|
||||||
}
|
}
|
||||||
Node create_pending(int width) {
|
Node create_pending(int width) {
|
||||||
return add(Fn::buf, Sort(width), {});
|
return add(Fn::buf, Sort(width), {});
|
||||||
|
|
Loading…
Reference in a new issue