diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-08-28 21:35:33 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-08-28 21:35:33 +0200 |
commit | eae390ae17839bf0273b32149f46a2560a23d934 (patch) | |
tree | 218b3327ef63938a762859386f23215cef83c4d3 /passes/opt | |
parent | 66582964bc11aadf3d0783a346706d801451a13f (diff) | |
download | yosys-eae390ae17839bf0273b32149f46a2560a23d934.tar.gz yosys-eae390ae17839bf0273b32149f46a2560a23d934.tar.bz2 yosys-eae390ae17839bf0273b32149f46a2560a23d934.zip |
Removed $predict again
Diffstat (limited to 'passes/opt')
-rw-r--r-- | passes/opt/opt_clean.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/opt/opt_clean.cc b/passes/opt/opt_clean.cc index 1546ec3fc..6600ffa25 100644 --- a/passes/opt/opt_clean.cc +++ b/passes/opt/opt_clean.cc @@ -64,7 +64,7 @@ struct keep_cache_t bool query(Cell *cell) { - if (cell->type.in("$memwr", "$meminit", "$assert", "$assume", "$predict")) + if (cell->type.in("$memwr", "$meminit", "$assert", "$assume")) return true; if (cell->has_keep_attr()) |