mirror of https://github.com/YosysHQ/yosys.git
Renamed modwalker.h to modtools.h
This commit is contained in:
parent
62c8a71525
commit
32a1cc3efd
|
@ -17,8 +17,8 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef MODWALKER_H
|
#ifndef MODTOOLS_H
|
||||||
#define MODWALKER_H
|
#define MODTOOLS_H
|
||||||
|
|
||||||
#include "kernel/sigtools.h"
|
#include "kernel/sigtools.h"
|
||||||
#include "kernel/celltypes.h"
|
#include "kernel/celltypes.h"
|
|
@ -17,13 +17,12 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "kernel/rtlil.h"
|
#include "kernel/yosys.h"
|
||||||
#include "kernel/satgen.h"
|
#include "kernel/satgen.h"
|
||||||
#include "kernel/sigtools.h"
|
#include "kernel/sigtools.h"
|
||||||
#include "kernel/modwalker.h"
|
#include "kernel/modtools.h"
|
||||||
#include "kernel/register.h"
|
|
||||||
#include "kernel/log.h"
|
PRIVATE_NAMESPACE_BEGIN
|
||||||
#include <algorithm>
|
|
||||||
|
|
||||||
static bool memcells_cmp(RTLIL::Cell *a, RTLIL::Cell *b)
|
static bool memcells_cmp(RTLIL::Cell *a, RTLIL::Cell *b)
|
||||||
{
|
{
|
||||||
|
@ -742,3 +741,5 @@ struct MemorySharePass : public Pass {
|
||||||
}
|
}
|
||||||
} MemorySharePass;
|
} MemorySharePass;
|
||||||
|
|
||||||
|
PRIVATE_NAMESPACE_END
|
||||||
|
|
||||||
|
|
|
@ -17,13 +17,12 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "kernel/rtlil.h"
|
#include "kernel/yosys.h"
|
||||||
#include "kernel/satgen.h"
|
#include "kernel/satgen.h"
|
||||||
#include "kernel/sigtools.h"
|
#include "kernel/sigtools.h"
|
||||||
#include "kernel/modwalker.h"
|
#include "kernel/modtools.h"
|
||||||
#include "kernel/register.h"
|
|
||||||
#include "kernel/log.h"
|
PRIVATE_NAMESPACE_BEGIN
|
||||||
#include <algorithm>
|
|
||||||
|
|
||||||
struct ShareWorkerConfig
|
struct ShareWorkerConfig
|
||||||
{
|
{
|
||||||
|
@ -967,3 +966,5 @@ struct SharePass : public Pass {
|
||||||
}
|
}
|
||||||
} SharePass;
|
} SharePass;
|
||||||
|
|
||||||
|
PRIVATE_NAMESPACE_END
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue