forked from OSchip/llvm-project
[libc] Use more consistent if defined syntax
This commit is contained in:
parent
5ee5acf7d9
commit
649d953716
|
@ -14,10 +14,10 @@ namespace __llvm_libc {
|
||||||
|
|
||||||
// Registering Types
|
// Registering Types
|
||||||
using FixedSizeTypes = testing::TypeList<
|
using FixedSizeTypes = testing::TypeList<
|
||||||
#ifdef __SSE2__
|
#if defined(__SSE2__)
|
||||||
x86::Vector128, //
|
x86::Vector128, //
|
||||||
#endif // __SSE2__
|
#endif // __SSE2__
|
||||||
#ifdef __AVX2__
|
#if defined(__AVX2__)
|
||||||
x86::Vector256, //
|
x86::Vector256, //
|
||||||
#endif // __AVX2__
|
#endif // __AVX2__
|
||||||
#if defined(__AVX512F__) and defined(__AVX512BW__)
|
#if defined(__AVX512F__) and defined(__AVX512BW__)
|
||||||
|
|
Loading…
Reference in New Issue