aboutsummaryrefslogtreecommitdiff
path: root/src/docs_writer.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-04-22 10:39:20 +0100
committergingerBill <bill@gingerbill.org>2021-04-22 10:39:20 +0100
commit0a66f8c9a35c57714952182143984eb988f2ef0f (patch)
treef09a88a9b0c98ddd0a9ace14fb1938e207a07ad2 /src/docs_writer.cpp
parent158e4c0b6cb173af8907453c6b083932e34a910e (diff)
Remove `intrinsics.x86_mmx` type
Diffstat (limited to 'src/docs_writer.cpp')
-rw-r--r--src/docs_writer.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/docs_writer.cpp b/src/docs_writer.cpp
index 5c9bb9f63..f4fd02376 100644
--- a/src/docs_writer.cpp
+++ b/src/docs_writer.cpp
@@ -724,13 +724,9 @@ OdinDocTypeIndex odin_doc_type(OdinDocWriter *w, Type *type) {
break;
case Type_SimdVector:
doc_type.kind = OdinDocType_SimdVector;
- if (type->SimdVector.is_x86_mmx) {
- doc_type.flags |= OdinDocTypeFlag_BitSet_x86_mmx;
- } else {
- doc_type.elem_count_len = 1;
- doc_type.elem_counts[0] = type->SimdVector.count;
- doc_type.types = odin_doc_type_as_slice(w, type->SimdVector.elem);
- }
+ doc_type.elem_count_len = 1;
+ doc_type.elem_counts[0] = type->SimdVector.count;
+ doc_type.types = odin_doc_type_as_slice(w, type->SimdVector.elem);
// TODO(bill):
break;
case Type_RelativePointer: