Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Simplified TypeInfo, take 2: factor common code in #3206

Merged
merged 18 commits into from
Sep 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions mak/DOCS
Original file line number Diff line number Diff line change
Expand Up @@ -129,44 +129,6 @@ DOCS=\
$(DOCDIR)\rt_trace.html \
$(DOCDIR)\rt_tracegc.html \
\
$(DOCDIR)\rt_typeinfo_ti_Acdouble.html \
$(DOCDIR)\rt_typeinfo_ti_Acfloat.html \
$(DOCDIR)\rt_typeinfo_ti_Acreal.html \
$(DOCDIR)\rt_typeinfo_ti_Adouble.html \
$(DOCDIR)\rt_typeinfo_ti_Afloat.html \
$(DOCDIR)\rt_typeinfo_ti_Ag.html \
$(DOCDIR)\rt_typeinfo_ti_Aint.html \
$(DOCDIR)\rt_typeinfo_ti_Along.html \
$(DOCDIR)\rt_typeinfo_ti_Areal.html \
$(DOCDIR)\rt_typeinfo_ti_Ashort.html \
$(DOCDIR)\rt_typeinfo_ti_byte.html \
$(DOCDIR)\rt_typeinfo_ti_C.html \
$(DOCDIR)\rt_typeinfo_ti_cdouble.html \
$(DOCDIR)\rt_typeinfo_ti_cent.html \
$(DOCDIR)\rt_typeinfo_ti_cfloat.html \
$(DOCDIR)\rt_typeinfo_ti_char.html \
$(DOCDIR)\rt_typeinfo_ti_creal.html \
$(DOCDIR)\rt_typeinfo_ti_dchar.html \
$(DOCDIR)\rt_typeinfo_ti_delegate.html \
$(DOCDIR)\rt_typeinfo_ti_double.html \
$(DOCDIR)\rt_typeinfo_ti_float.html \
$(DOCDIR)\rt_typeinfo_ti_idouble.html \
$(DOCDIR)\rt_typeinfo_ti_ifloat.html \
$(DOCDIR)\rt_typeinfo_ti_int.html \
$(DOCDIR)\rt_typeinfo_ti_ireal.html \
$(DOCDIR)\rt_typeinfo_ti_long.html \
$(DOCDIR)\rt_typeinfo_ti_n.html \
$(DOCDIR)\rt_typeinfo_ti_ptr.html \
$(DOCDIR)\rt_typeinfo_ti_real.html \
$(DOCDIR)\rt_typeinfo_ti_short.html \
$(DOCDIR)\rt_typeinfo_ti_ubyte.html \
$(DOCDIR)\rt_typeinfo_ti_ucent.html \
$(DOCDIR)\rt_typeinfo_ti_uint.html \
$(DOCDIR)\rt_typeinfo_ti_ulong.html \
$(DOCDIR)\rt_typeinfo_ti_ushort.html \
$(DOCDIR)\rt_typeinfo_ti_void.html \
$(DOCDIR)\rt_typeinfo_ti_wchar.html \
\
$(DOCDIR)\rt_unwind.html \
\
$(DOCDIR)\rt_util_container_array.html \
Expand Down
38 changes: 0 additions & 38 deletions mak/SRCS
Original file line number Diff line number Diff line change
Expand Up @@ -544,42 +544,4 @@ SRCS=\
src\rt\util\container\hashtab.d \
src\rt\util\container\treap.d \
\
src\rt\typeinfo\ti_Acdouble.d \
src\rt\typeinfo\ti_Acfloat.d \
src\rt\typeinfo\ti_Acreal.d \
src\rt\typeinfo\ti_Adouble.d \
src\rt\typeinfo\ti_Afloat.d \
src\rt\typeinfo\ti_Ag.d \
src\rt\typeinfo\ti_Aint.d \
src\rt\typeinfo\ti_Along.d \
src\rt\typeinfo\ti_Areal.d \
src\rt\typeinfo\ti_Ashort.d \
src\rt\typeinfo\ti_byte.d \
src\rt\typeinfo\ti_C.d \
src\rt\typeinfo\ti_cdouble.d \
src\rt\typeinfo\ti_cent.d \
src\rt\typeinfo\ti_cfloat.d \
src\rt\typeinfo\ti_char.d \
src\rt\typeinfo\ti_creal.d \
src\rt\typeinfo\ti_dchar.d \
src\rt\typeinfo\ti_delegate.d \
src\rt\typeinfo\ti_double.d \
src\rt\typeinfo\ti_float.d \
src\rt\typeinfo\ti_idouble.d \
src\rt\typeinfo\ti_ifloat.d \
src\rt\typeinfo\ti_int.d \
src\rt\typeinfo\ti_ireal.d \
src\rt\typeinfo\ti_long.d \
src\rt\typeinfo\ti_n.d \
src\rt\typeinfo\ti_ptr.d \
src\rt\typeinfo\ti_real.d \
src\rt\typeinfo\ti_short.d \
src\rt\typeinfo\ti_ubyte.d \
src\rt\typeinfo\ti_ucent.d \
src\rt\typeinfo\ti_uint.d \
src\rt\typeinfo\ti_ulong.d \
src\rt\typeinfo\ti_ushort.d \
src\rt\typeinfo\ti_void.d \
src\rt\typeinfo\ti_wchar.d \
\
src\etc\linux\memoryerror.d
1 change: 0 additions & 1 deletion posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ endif
.PHONY : unittest
ifeq (1,$(BUILD_WAS_SPECIFIED))
unittest : $(UT_MODULES) $(addsuffix /.run,$(ADDITIONAL_TESTS))
@echo done
else
unittest : unittest-debug unittest-release
unittest-%: target
Expand Down
1 change: 0 additions & 1 deletion src/core/internal/array/operations.d
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ else

version (X86_64) unittest
{
pragma(msg, vectorizeable!(double[], const(double)[], double[], "+", "="));
static assert(vectorizeable!(double[], const(double)[], double[], "+", "="));
static assert(!vectorizeable!(double[], const(ulong)[], double[], "+", "="));
// Vector type are (atm.) not implicitly convertible and would require
Expand Down
47 changes: 0 additions & 47 deletions src/rt/typeinfo/ti_Acdouble.d

This file was deleted.

47 changes: 0 additions & 47 deletions src/rt/typeinfo/ti_Acfloat.d

This file was deleted.

47 changes: 0 additions & 47 deletions src/rt/typeinfo/ti_Acreal.d

This file was deleted.

61 changes: 0 additions & 61 deletions src/rt/typeinfo/ti_Adouble.d

This file was deleted.

61 changes: 0 additions & 61 deletions src/rt/typeinfo/ti_Afloat.d

This file was deleted.

Loading