aboutsummaryrefslogtreecommitdiffstats
path: root/sem_stmts.adb
diff options
context:
space:
mode:
Diffstat (limited to 'sem_stmts.adb')
-rw-r--r--sem_stmts.adb6
1 files changed, 6 insertions, 0 deletions
diff --git a/sem_stmts.adb b/sem_stmts.adb
index 8067abb8b..30ea99cae 100644
--- a/sem_stmts.adb
+++ b/sem_stmts.adb
@@ -711,6 +711,12 @@ package body Sem_Stmts is
Set_Expression (Stmt, Expr);
Target_Type := Get_Type (Expr);
+ -- An aggregate cannot be analyzed without a type.
+ -- FIXME: partially analyze the aggregate ?
+ if Target_Type = Null_Iir then
+ return;
+ end if;
+
-- FIXME: check elements are identified at most once.
else
Target_Type := Null_Iir;