aboutsummaryrefslogtreecommitdiffstats
path: root/src/options.adb
diff options
context:
space:
mode:
authorOndrej Ille <ondrej.ille@gmail.com>2021-03-21 10:31:37 +0100
committertgingold <tgingold@users.noreply.github.com>2021-03-22 08:26:02 +0100
commitae04875b6006a35334f415cc11f7d05572a89f3d (patch)
tree7316e5c15b721fb37781252dfb6de4bb1b4174e4 /src/options.adb
parent4895ba09c84b53873d229ff395ff2d1cc47695db (diff)
downloadghdl-ae04875b6006a35334f415cc11f7d05572a89f3d.tar.gz
ghdl-ae04875b6006a35334f415cc11f7d05572a89f3d.tar.bz2
ghdl-ae04875b6006a35334f415cc11f7d05572a89f3d.zip
Revert "src: Fix notes on pull-request."
This reverts commit c7a6eda4640ae235c944168ca6c536434808ece8.
Diffstat (limited to 'src/options.adb')
-rw-r--r--src/options.adb15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/options.adb b/src/options.adb
index 9724b9f00..7aa31e253 100644
--- a/src/options.adb
+++ b/src/options.adb
@@ -102,7 +102,7 @@ package body Options is
-- Handles -Wpsl-uncovered
if Opt = "psl-uncovered" then
- Flag_Psl_Report_Uncovered := True;
+ Flag_Psl_Warn_Uncovered := True;
return Option_Ok;
end if;
@@ -297,17 +297,18 @@ package body Options is
P (" -Werror turns warnings into errors");
P (" -Wpsl-uncovered Prints warning after simulation for each");
P (" uncovered PSL cover point.");
+ P (" Only valid with '-fpsl'");
-- P ("Simulation option:");
-- P (" --assert-level=LEVEL set the level which stop the");
-- P (" simulation. LEVEL is note, warning, error,");
-- P (" failure or none");
P ("Extensions:");
- P (" -fexplicit give priority to explicitly declared operator");
- P (" -frelaxed-rules relax some LRM rules");
- P (" -C --mb-comments allow multi-bytes chars in a comment");
- P (" --bootstrap allow --work=std");
- P (" --syn-binding use synthesis default binding rule");
- P (" -fpsl parse psl in comments");
+ P (" -fexplicit give priority to explicitly declared operator");
+ P (" -frelaxed-rules relax some LRM rules");
+ P (" -C --mb-comments allow multi-bytes chars in a comment");
+ P (" --bootstrap allow --work=std");
+ P (" --syn-binding use synthesis default binding rule");
+ P (" -fpsl parse psl in comments");
P ("Compilation list:");
P (" -l[sca] after semantics, canon or annotation");
P (" --lall -lX options apply to all files");