From 85652e24e0b83082208679c04e3e0de2ef322642 Mon Sep 17 00:00:00 2001 From: Cary R Date: Mon, 29 Oct 2007 09:39:12 -0700 Subject: [PATCH] v0_8: explicitly state the V0.8 cannot evaluate constant real expressions. V0.8 does not have the code to evaluate constant real expressions. This patch adds a line to the normal error message that says this explicitly. --- net_design.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/net_design.cc b/net_design.cc index 4a41f2d13..735da2bb6 100644 --- a/net_design.cc +++ b/net_design.cc @@ -396,6 +396,7 @@ void NetScope::evaluate_parameters(Design*des) << ": internal error: " "unable to evaluate real parameter values: " << *expr << endl; + cerr << "FYI: V0.8 cannot evaluate constant real expressions." << endl; des->errors += 1; continue; }