diff options
Diffstat (limited to 'sem_types.adb')
-rw-r--r-- | sem_types.adb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sem_types.adb b/sem_types.adb index 9b35cc660..d7172c4bf 100644 --- a/sem_types.adb +++ b/sem_types.adb @@ -62,7 +62,9 @@ package body Sem_Types is Func := Get_Resolution_Function (Atype); if Func /= Null_Iir then Func := Get_Named_Entity (Func); - Set_Resolution_Function_Flag (Func, True); + if Func /= Error_Mark then + Set_Resolution_Function_Flag (Func, True); + end if; end if; Mark := Get_Type_Mark (Atype); if Mark /= Null_Iir then |