This repository was archived by the owner on Nov 22, 2023. It is now read-only.
File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2716,8 +2716,8 @@ static void walk_assign_lsym_gsym(scope* current_scope, int phase){
2716
2716
insert_implied_type_conversion ((expr_node * * )stmtlist [i ].expressions , qq );
2717
2717
}
2718
2718
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;
2721
2721
if (symbol_table [active_function ]-> is_codegen != 0 ){
2722
2722
puts ("VALIDATION ERROR!" );
2723
2723
puts ("asm blocks may not exist in codegen functions." );
@@ -2726,6 +2726,7 @@ static void walk_assign_lsym_gsym(scope* current_scope, int phase){
2726
2726
puts ("Was declared 'codegen' so you cannot use 'asm' blocks in it." );
2727
2727
validator_exit_err ();
2728
2728
}
2729
+ /*
2729
2730
if(symbol_table[active_function]->is_pure > 0){
2730
2731
puts("VALIDATION ERROR!");
2731
2732
puts("asm blocks may not exist in pure functions.");
@@ -2734,6 +2735,7 @@ static void walk_assign_lsym_gsym(scope* current_scope, int phase){
2734
2735
puts("Was declared 'pure' so you cannot use 'asm' blocks in it.");
2735
2736
validator_exit_err();
2736
2737
}
2738
+ */
2737
2739
}
2738
2740
else if (stmtlist [i ].kind == STMT_IF ){
2739
2741
type qq = ((expr_node * )stmtlist [i ].expressions [0 ])-> t ;
You can’t perform that action at this time.
0 commit comments