소스 검색

fix optimization mode, cold, and disabled not being applied to poly procs

Laytan Laats 1 년 전
부모
커밋
40625b24e2
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      src/check_expr.cpp

+ 10 - 0
src/check_expr.cpp

@@ -587,6 +587,16 @@ gb_internal bool find_or_generate_polymorphic_procedure(CheckerContext *old_c, E
 	entity->file = base_entity->file;
 	entity->file = base_entity->file;
 	entity->pkg = base_entity->pkg;
 	entity->pkg = base_entity->pkg;
 	entity->flags = 0;
 	entity->flags = 0;
+
+	entity->Procedure.optimization_mode = base_entity->Procedure.optimization_mode;
+
+	if (base_entity->flags & EntityFlag_Cold) {
+		entity->flags |= EntityFlag_Cold;
+	}
+	if (base_entity->flags & EntityFlag_Disabled) {
+		entity->flags |= EntityFlag_Disabled;
+	}
+
 	d->entity = entity;
 	d->entity = entity;
 
 
 	AstFile *file = nullptr;
 	AstFile *file = nullptr;