mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-11 22:01:25 -07:00
Also allow #no_bounds_check on an expression #499
This commit is contained in:
+5
-5
@@ -184,11 +184,11 @@ enum ProcCallingConvention {
|
||||
ProcCC_ForeignBlockDefault = -1,
|
||||
};
|
||||
|
||||
enum StmtStateFlag {
|
||||
StmtStateFlag_bounds_check = 1<<0,
|
||||
StmtStateFlag_no_bounds_check = 1<<1,
|
||||
enum StateFlag {
|
||||
StateFlag_bounds_check = 1<<0,
|
||||
StateFlag_no_bounds_check = 1<<1,
|
||||
|
||||
StmtStateFlag_no_deferred = 1<<5,
|
||||
StateFlag_no_deferred = 1<<5,
|
||||
};
|
||||
|
||||
enum ViralStateFlag {
|
||||
@@ -573,7 +573,7 @@ isize const ast_variant_sizes[] = {
|
||||
|
||||
struct Ast {
|
||||
AstKind kind;
|
||||
u32 stmt_state_flags;
|
||||
u32 state_flags;
|
||||
u32 viral_state_flags;
|
||||
bool been_handled;
|
||||
AstFile * file;
|
||||
|
||||
Reference in New Issue
Block a user