]> git.ipfire.org Git - thirdparty/mdadm.git/blob - coverity-gcc-hack.h
mdadm: check value returned by snprintf against errors
[thirdparty/mdadm.git] / coverity-gcc-hack.h
1 #if !defined(__KERNEL__) && defined(__x86_64__) && defined(__COVERITY_GCC_VERSION_AT_LEAST)
2 #if __COVERITY_GCC_VERSION_AT_LEAST(7, 0)
3 typedef float _Float128 __attribute__((__vector_size__(128)));
4 typedef float _Float64 __attribute__((__vector_size__(64)));
5 typedef float _Float32 __attribute__((__vector_size__(32)));
6 typedef float _Float128x __attribute__((__vector_size__(128)));
7 typedef float _Float64x __attribute__((__vector_size__(64)));
8 typedef float _Float32x __attribute__((__vector_size__(32)));
9 #endif
10 #endif