diff options
| author | gingerBill <bill@gingerbill.org> | 2019-12-15 11:30:09 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-12-15 11:30:09 +0000 |
| commit | 58d4d424c6db749c10d723844ec5a847243bee39 (patch) | |
| tree | 4f89d391cc839313d5aec976448991d8b6662914 /core/runtime | |
| parent | 89ccb5b99f39cdb673435e37cea1f3db8a7224a6 (diff) | |
Replace `#vector[N]T` with `#simd[N]T` to reduce confusion #498
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/internal.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/internal.odin b/core/runtime/internal.odin index ec6cec953..d377c7bd0 100644 --- a/core/runtime/internal.odin +++ b/core/runtime/internal.odin @@ -289,7 +289,7 @@ print_type :: proc(fd: os.Handle, ti: ^Type_Info) { if info.is_x86_mmx { os.write_string(fd, "intrinsics.x86_mmx"); } else { - os.write_string(fd, "#vector["); + os.write_string(fd, "#simd["); print_u64(fd, u64(info.count)); os.write_byte(fd, ']'); print_type(fd, info.elem); |