diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-06-13 18:18:41 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-06-13 18:18:41 +0200 |
commit | 29b47848de1514e64a47104fef77f4e14764f030 (patch) | |
tree | 85a9c2089514a69e871af509cee9895cca9bfea1 /src | |
parent | a42fb47d1987c8c4fb903da2ecdb9cee14c3d539 (diff) | |
download | ghdl-29b47848de1514e64a47104fef77f4e14764f030.tar.gz ghdl-29b47848de1514e64a47104fef77f4e14764f030.tar.bz2 ghdl-29b47848de1514e64a47104fef77f4e14764f030.zip |
options: set parse_parenthesis flag on
Diffstat (limited to 'src')
-rw-r--r-- | src/options.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/options.adb b/src/options.adb index 65e4fcdd8..3f6b9747b 100644 --- a/src/options.adb +++ b/src/options.adb @@ -25,6 +25,7 @@ with PSL.Nodes; with PSL.Dump_Tree; with Vhdl.Disp_Tree; with Vhdl.Scanner; +with Vhdl.Parse; with Vhdl.Back_End; use Vhdl.Back_End; with Flags; use Flags; with Files_Map; @@ -144,6 +145,7 @@ package body Options is Mb_Comment := True; elsif Opt = "--force-analysis" then Flag_Force_Analysis := True; + Vhdl.Parse.Flag_Parse_Parenthesis := True; elsif Opt = "-fcaret-diagnostics" then Flag_Caret_Diagnostics := True; elsif Opt = "-fno-caret-diagnostics" then |