aboutsummaryrefslogtreecommitdiffstats
path: root/src/libraries.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-06-13 12:25:01 +0200
committerTristan Gingold <tgingold@free.fr>2020-06-13 16:47:59 +0200
commite0ca8bf0b0d8049c7e9f7fe53f7ed942fac61453 (patch)
treeb4477194e58e9ca5b0c296caa24da39e5a2e845a /src/libraries.adb
parent8eb418a695000718920c2ef5294c185a2ef40cca (diff)
downloadghdl-e0ca8bf0b0d8049c7e9f7fe53f7ed942fac61453.tar.gz
ghdl-e0ca8bf0b0d8049c7e9f7fe53f7ed942fac61453.tar.bz2
ghdl-e0ca8bf0b0d8049c7e9f7fe53f7ed942fac61453.zip
vhdl: --std93c is now an alias for --std=93 -frelaxed
This simplifies the definition of --std=93c
Diffstat (limited to 'src/libraries.adb')
-rw-r--r--src/libraries.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libraries.adb b/src/libraries.adb
index 0425030ad..d7ff72a85 100644
--- a/src/libraries.adb
+++ b/src/libraries.adb
@@ -124,7 +124,7 @@ package body Libraries is
case Vhdl_Std is
when Vhdl_87 =>
return Image_Identifier (Library) & "-obj87.cf";
- when Vhdl_93c | Vhdl_93 | Vhdl_00 | Vhdl_02 =>
+ when Vhdl_93 | Vhdl_00 | Vhdl_02 =>
return Image_Identifier (Library) & "-obj93.cf";
when Vhdl_08 =>
return Image_Identifier (Library) & "-obj08.cf";
@@ -166,7 +166,7 @@ package body Libraries is
case Vhdl_Std is
when Vhdl_87 =>
Path (L + 2 .. L + 4) := "v87";
- when Vhdl_93c | Vhdl_93 | Vhdl_00 | Vhdl_02 =>
+ when Vhdl_93 | Vhdl_00 | Vhdl_02 =>
Path (L + 2 .. L + 4) := "v93";
when Vhdl_08 =>
Path (L + 2 .. L + 4) := "v08";