Small corrections to const2ast warning messages
authorClifford Wolf <clifford@clifford.at>
Mon, 17 Aug 2015 14:22:53 +0000 (16:22 +0200)
committerClifford Wolf <clifford@clifford.at>
Mon, 17 Aug 2015 14:22:53 +0000 (16:22 +0200)
frontends/verilog/const2ast.cc

index 5bc8c700e0f0193dee4ba44033512deffabe7491..9cc99750f4e1678d7b4f2b956c0111998f28f7a9 100644 (file)
@@ -142,7 +142,7 @@ static void my_strtobin(std::vector<RTLIL::State> &data, const char *str, int le
        }
 
        if (len > len_in_bits)
-               log_warning("(Literal has a width of %d bit, but value requires %d bit. (%s:%d)\n",
+               log_warning("Literal has a width of %d bit, but value requires %d bit. (%s:%d)\n",
                        len_in_bits, len, current_filename.c_str(), get_line_num());
 }
 
@@ -152,7 +152,7 @@ AstNode *VERILOG_FRONTEND::const2ast(std::string code, char case_type, bool warn
        if (warn_z) {
                AstNode *ret = const2ast(code, case_type);
                if (std::find(ret->bits.begin(), ret->bits.end(), RTLIL::State::Sz) != ret->bits.end())
-                       log_warning("Yosys does not support tri-state logic at the moment. (%s:%d)\n",
+                       log_warning("Yosys has only limited support for tri-state logic at the moment. (%s:%d)\n",
                                current_filename.c_str(), get_line_num());
                return ret;
        }