blob: 36c7ef14cbdf0616d4f5b0e74a288c9d72624ee9 [file] [log] [blame]
if(ARCH STREQUAL "PowerPC")
add_subdirectory(Altivec)
endif()
if(ARCH STREQUAL "x86")
add_subdirectory(SSE)
endif()
CHECK_SYMBOL_EXISTS(__ARM_NEON "" NEON_AVAILABLE)
if(NEON_AVAILABLE)
add_subdirectory(NEON)
endif()
if(ARCH STREQUAL "AArch64")
add_subdirectory(AArch64)
endif()
llvm_singlesource(PREFIX "Vector-")