diff options
author | Tristan Gingold | 2014-01-08 04:22:40 +0100 |
---|---|---|
committer | Tristan Gingold | 2014-01-08 04:22:40 +0100 |
commit | 19211ffc421560405aee966ee742ae849c73a31c (patch) | |
tree | 1036f20b80fd8133c94fccb8e4ff6a9cc226818d /options.adb | |
parent | 429a5e4a2d7714915b45b33869f06f954c29a316 (diff) | |
download | ghdl-19211ffc421560405aee966ee742ae849c73a31c.tar.gz ghdl-19211ffc421560405aee966ee742ae849c73a31c.tar.bz2 ghdl-19211ffc421560405aee966ee742ae849c73a31c.zip |
Rework literal typing (and initial work for condition operator).
Diffstat (limited to 'options.adb')
-rw-r--r-- | options.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/options.adb b/options.adb index a62b76d..cd70f31 100644 --- a/options.adb +++ b/options.adb @@ -114,6 +114,8 @@ package body Options is Bootstrap := True; elsif Opt = "-fexplicit" then Flag_Explicit := True; + elsif Opt = "-frelaxed-rules" then + Flag_Relaxed_Rules := True; elsif Opt = "--syn-binding" then Flag_Syn_Binding := True; elsif Opt = "--no-vital-checks" then @@ -215,6 +217,7 @@ package body Options is -- 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"); |