mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-31 03:40:08 +00:00
Fix overloading bug due to #import .; Add sys/wgl.odin
This commit is contained in:
@@ -1102,13 +1102,6 @@ void ir_add_block_to_proc(irProcedure *proc, irBlock *b) {
|
||||
b->index = proc->block_count++;
|
||||
}
|
||||
|
||||
|
||||
// irBlock *ir_add_block(irProcedure *proc, AstNode *node, char *label) {
|
||||
// irBlock *block = ir_new_block(proc, node, label);
|
||||
// ir_add_block_to_proc(proc, block);
|
||||
// return block;
|
||||
// }
|
||||
|
||||
void ir_start_block(irProcedure *proc, irBlock *block) {
|
||||
proc->curr_block = block;
|
||||
if (block != NULL) {
|
||||
|
||||
Reference in New Issue
Block a user