diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-12-05 18:39:30 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-12-05 18:39:30 +0100 |
commit | 4128f21b2099ee0f15aa9f32bb5ea0c1e98b6dc5 (patch) | |
tree | 62a0b8789b784d4df4a14fcee72ba9d494ab25a2 | |
parent | 2984b982505a9e61fd45ecfe2c01bc8e018fe4be (diff) | |
download | ghdl-4128f21b2099ee0f15aa9f32bb5ea0c1e98b6dc5.tar.gz ghdl-4128f21b2099ee0f15aa9f32bb5ea0c1e98b6dc5.tar.bz2 ghdl-4128f21b2099ee0f15aa9f32bb5ea0c1e98b6dc5.zip |
scan_literal: set the token in case of exceptional
-rw-r--r-- | src/vhdl/scanner-scan_literal.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vhdl/scanner-scan_literal.adb b/src/vhdl/scanner-scan_literal.adb index c7c902d4d..ef6718925 100644 --- a/src/vhdl/scanner-scan_literal.adb +++ b/src/vhdl/scanner-scan_literal.adb @@ -311,4 +311,7 @@ begin exception when Constraint_Error => Error_Msg_Scan ("literal overflow"); + + Current_Token := Tok_Integer; + Current_Context.Int64 := 0; end Scan_Literal; |