Fix overloading bug due to #import .; Add sys/wgl.odin

This commit is contained in:
Ginger Bill
2017-02-19 11:35:33 +00:00
parent 0c37aa9ea0
commit 758dd9ba16
7 changed files with 114 additions and 43 deletions
-7
View File
@@ -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) {