Differences From Artifact [dfcbb01508]:
- File bs/builtins/types/runtime/runtime.h — part of check-in [1793989d05] at 2024-02-09 18:05:28 on branch trunk — Lowering: completely reworked all lowering to happen in the same two unified extension points upstream of all three CIR consumers (user: zlodo size: 611)
To Artifact [97d244c460]:
- File bs/builtins/types/runtime/runtime.h — part of check-in [0db147f117] at 2024-09-15 20:24:31 on branch cir-ssa-refactor — Add clang format settings, reformat everything (user: achavasse size: 640)
| ︙ | ︙ | |||
16 17 18 19 20 21 22 |
SetupRuntimePointerType( e );
SetupRuntimeArrayType( e );
SetupRuntimeTypesChecking( e );
}
extern bool IsRuntimeType( const Value& t );
extern const codegen::Type* GetCodegenType( const Value& t );
| | | 16 17 18 19 20 21 22 23 24 25 |
SetupRuntimePointerType( e );
SetupRuntimeArrayType( e );
SetupRuntimeTypesChecking( e );
}
extern bool IsRuntimeType( const Value& t );
extern const codegen::Type* GetCodegenType( const Value& t );
} // namespace goose::builtins
#endif
|