diff options
| author | gingerBill <bill@gingerbill.org> | 2021-04-22 10:39:20 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-04-22 10:39:20 +0100 |
| commit | 0a66f8c9a35c57714952182143984eb988f2ef0f (patch) | |
| tree | f09a88a9b0c98ddd0a9ace14fb1938e207a07ad2 /src/ir_print.cpp | |
| parent | 158e4c0b6cb173af8907453c6b083932e34a910e (diff) | |
Remove `intrinsics.x86_mmx` type
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index d0c014a27..54ce5dca1 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -624,13 +624,9 @@ void ir_print_type(irFileBuffer *f, irModule *m, Type *t, bool in_struct) { } case Type_SimdVector: - if (t->SimdVector.is_x86_mmx) { - ir_write_str_lit(f, "x86_mmx"); - } else { - ir_fprintf(f, "<%lld x ", t->SimdVector.count);; - ir_print_type(f, m, t->SimdVector.elem); - ir_write_byte(f, '>'); - } + ir_fprintf(f, "<%lld x ", t->SimdVector.count);; + ir_print_type(f, m, t->SimdVector.elem); + ir_write_byte(f, '>'); return; case Type_RelativePointer: |