x86: Remove faulty sanity tests for RTLD build with no multiarch

The sanity tests where meant to ensure that the default implementation
was only being built without multiarch with the exception of the
multiarch/rtld-*.S files.

The code used IS_IN (rtld) to check if the build for was for an
multiarch/rtld-*.S file which is incorrect as IS_IN (rtld) is set for
the non-multiarch build as well.
This commit is contained in:
Noah Goldstein 2022-06-23 10:49:19 -07:00
parent 220b83d83d
commit bd42891bb3
1 changed files with 0 additions and 10 deletions

View File

@ -46,14 +46,4 @@
# error "Unsupported ISA Level!"
#endif
#if IS_IN(rtld)
# if !defined USE_MULTIARCH
# error "RTLD version should only exist in multiarch build"
# endif
#else
# if defined USE_MULTIARCH
# error "Multiarch build should not use ISA_DEFAULT_IMPL without RTLD"
# endif
#endif
#include ISA_DEFAULT_IMPL