[libc] Use more consistent if defined syntax

This commit is contained in:
Guillaume Chatelet 2021-11-17 15:14:06 +00:00
parent 5ee5acf7d9
commit 649d953716
1 changed files with 2 additions and 2 deletions

View File

@ -14,10 +14,10 @@ namespace __llvm_libc {
// Registering Types
using FixedSizeTypes = testing::TypeList<
#ifdef __SSE2__
#if defined(__SSE2__)
x86::Vector128, //
#endif // __SSE2__
#ifdef __AVX2__
#if defined(__AVX2__)
x86::Vector256, //
#endif // __AVX2__
#if defined(__AVX512F__) and defined(__AVX512BW__)