diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-01-06 15:26:33 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-01-06 15:26:33 +0100 |
commit | 947492867238d47c014189a0de2d49f3e5d9bbbc (patch) | |
tree | 2bc5c98f48796e357ba806dcd773da973209565a /passes | |
parent | 4a0b3a5423175eed7f1de9e975ee1fb20a2eb3ae (diff) | |
download | yosys-947492867238d47c014189a0de2d49f3e5d9bbbc.tar.gz yosys-947492867238d47c014189a0de2d49f3e5d9bbbc.tar.bz2 yosys-947492867238d47c014189a0de2d49f3e5d9bbbc.zip |
Towards Xilinx bram support
Diffstat (limited to 'passes')
-rw-r--r-- | passes/memory/memory_bram.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/passes/memory/memory_bram.cc b/passes/memory/memory_bram.cc index fd5db188e..c2e320658 100644 --- a/passes/memory/memory_bram.cc +++ b/passes/memory/memory_bram.cc @@ -87,7 +87,6 @@ struct rules_t tokens.clear(); string line; while (std::getline(infile, line)) { - log("> %s\n", line.c_str()); for (string tok = next_token(line); !tok.empty(); tok = next_token(line)) { if (tok[0] == '#') break; |