From b55b1ffe14bc4a7459cd9b9bdb8b9b0c8f7f8091 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 11 Nov 2018 17:08:30 +0000 Subject: `opaque` keyword and type --- src/ir_print.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/ir_print.cpp') diff --git a/src/ir_print.cpp b/src/ir_print.cpp index c8b255d2f..1879e6d78 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -512,6 +512,10 @@ void ir_print_type(irFileBuffer *f, irModule *m, Type *t, bool in_struct) { ir_print_type(f, m, bit_set_to_int(t)); return; } + + case Type_Opaque: + ir_print_type(f, m, strip_opaque_type(t)); + return; } } -- cgit v1.2.3