diff options
Diffstat (limited to 'src/synth/synth-values.adb')
-rw-r--r-- | src/synth/synth-values.adb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/synth/synth-values.adb b/src/synth/synth-values.adb index 47c47e279..92587fd55 100644 --- a/src/synth/synth-values.adb +++ b/src/synth/synth-values.adb @@ -304,4 +304,13 @@ package body Synth.Values is raise Internal_Error; end case; end Extract_Bound; + + function Get_Bound_Width (Bnd : Value_Bound_Acc) return Width is + begin + if Bnd = null then + return 1; + else + return Bnd.Len; + end if; + end Get_Bound_Width; end Synth.Values; |