Skip to content
This repository was archived by the owner on Nov 22, 2023. It is now read-only.

Commit 47180a2

Browse files
author
gek
committed
make push
1 parent 82d313d commit 47180a2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

code_validator.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -2716,8 +2716,8 @@ static void walk_assign_lsym_gsym(scope* current_scope, int phase){
27162716
insert_implied_type_conversion((expr_node**)stmtlist[i].expressions, qq);
27172717
}
27182718
else if(stmtlist[i].kind == STMT_ASM){
2719-
symbol_table[active_function]->is_impure_globals_or_asm = 1;
2720-
symbol_table[active_function]->is_impure = 1;
2719+
//symbol_table[active_function]->is_impure_globals_or_asm = 1;
2720+
//symbol_table[active_function]->is_impure = 1;
27212721
if(symbol_table[active_function]->is_codegen != 0){
27222722
puts("VALIDATION ERROR!");
27232723
puts("asm blocks may not exist in codegen functions.");
@@ -2726,6 +2726,7 @@ static void walk_assign_lsym_gsym(scope* current_scope, int phase){
27262726
puts("Was declared 'codegen' so you cannot use 'asm' blocks in it.");
27272727
validator_exit_err();
27282728
}
2729+
/*
27292730
if(symbol_table[active_function]->is_pure > 0){
27302731
puts("VALIDATION ERROR!");
27312732
puts("asm blocks may not exist in pure functions.");
@@ -2734,6 +2735,7 @@ static void walk_assign_lsym_gsym(scope* current_scope, int phase){
27342735
puts("Was declared 'pure' so you cannot use 'asm' blocks in it.");
27352736
validator_exit_err();
27362737
}
2738+
*/
27372739
}
27382740
else if(stmtlist[i].kind == STMT_IF){
27392741
type qq = ((expr_node*)stmtlist[i].expressions[0])->t;

0 commit comments

Comments
 (0)