Merge branch 'master' of github.com:cliffordwolf/yosys

This commit is contained in:
Clifford Wolf 2015-03-20 09:10:16 +01:00
commit 6f8547bfc6

View file

@ -105,14 +105,14 @@ int LibertyParser::lexer(std::string &str)
}
if (c == '"') {
str = c;
str = "";
while (1) {
c = f.get();
if (c == '\n')
line++;
str += c;
if (c == '"')
break;
str += c;
}
// fprintf(stderr, "LEX: string >>%s<<\n", str.c_str());
return 'v';