aboutsummaryrefslogtreecommitdiffstats
path: root/src/options.adb
diff options
context:
space:
mode:
authorOndrej Ille <ondrej.ille@gmail.com>2021-03-21 10:32:39 +0100
committertgingold <tgingold@users.noreply.github.com>2021-03-22 08:26:02 +0100
commit567bd34cd798eb636fd34ea755879d1cb29104a4 (patch)
tree7b37c5c34b61861233aac8120977651056f7f9ab /src/options.adb
parent542f0b91043981e7ee590d4e614b7ff65521a38d (diff)
downloadghdl-567bd34cd798eb636fd34ea755879d1cb29104a4.tar.gz
ghdl-567bd34cd798eb636fd34ea755879d1cb29104a4.tar.bz2
ghdl-567bd34cd798eb636fd34ea755879d1cb29104a4.zip
Revert "src: Add -Wpsl-uncovered option to optionally warn about uncovered PSL sequences at the end of simulation."
This reverts commit e20d4477f9b55f897d4f9008d6c94db8d8c3a54f.
Diffstat (limited to 'src/options.adb')
-rw-r--r--src/options.adb21
1 files changed, 6 insertions, 15 deletions
diff --git a/src/options.adb b/src/options.adb
index 7aa31e253..6fa3df36e 100644
--- a/src/options.adb
+++ b/src/options.adb
@@ -100,12 +100,6 @@ package body Options is
return Option_Ok;
end if;
- -- Handles -Wpsl-uncovered
- if Opt = "psl-uncovered" then
- Flag_Psl_Warn_Uncovered := True;
- return Option_Ok;
- end if;
-
-- Unknown warning.
Error_Msg_Option ("unknown warning identifier");
return Option_Err;
@@ -295,20 +289,17 @@ package body Options is
P (" -Wspecs warns if a all/others spec does not apply");
P (" -Wunused warns if a subprogram is never used");
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");