diff options
author | Rodrigo Alejandro Melo <rmelo@inti.gob.ar> | 2020-02-03 10:30:33 -0300 |
---|---|---|
committer | Rodrigo Alejandro Melo <rmelo@inti.gob.ar> | 2020-02-03 10:44:09 -0300 |
commit | 71f3afb9a26e7bad2a9e9d59877a94cbd757cad4 (patch) | |
tree | dd5ce49cf76e450ba914f6f23cbcf573cbfcb98a | |
parent | 8217f579b7450f282f1baa8d6fe1fbefc002a534 (diff) | |
download | yosys-71f3afb9a26e7bad2a9e9d59877a94cbd757cad4.tar.gz yosys-71f3afb9a26e7bad2a9e9d59877a94cbd757cad4.tar.bz2 yosys-71f3afb9a26e7bad2a9e9d59877a94cbd757cad4.zip |
Replaced strlen by GetSize into simplify.cc
As recommended in CodingReadme.
Signed-off-by: Rodrigo Alejandro Melo <rmelo@inti.gob.ar>
-rw-r--r-- | frontends/ast/simplify.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc index 310f6fc32..1b6618cd8 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -2886,15 +2886,15 @@ AstNode *AstNode::readmem(bool is_readmemh, std::string mem_filename, AstNode *m int meminit_size=0; std::ifstream f; - std::string path = filename.substr(0, filename.find_last_of("\\/")+1); f.open(mem_filename.c_str()); if (f.fail()) { + std::string path = filename.substr(0, filename.find_last_of("\\/")+1); f.open(path + mem_filename.c_str()); yosys_input_files.insert(path + mem_filename); } else { yosys_input_files.insert(mem_filename); } - if (f.fail() || strlen(mem_filename.c_str()) == 0) + if (f.fail() || GetSize(mem_filename) == 0) log_file_error(filename, linenum, "Can not open file `%s` for %s.\n", mem_filename.c_str(), str.c_str()); log_assert(GetSize(memory->children) == 2 && memory->children[1]->type == AST_RANGE && memory->children[1]->range_valid); |