[SystemZ] Add header guard macros to vecintrin.h (#129170) · llvm/llvm-project@0f5e7e8 (original) (raw)
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -7,6 +7,9 @@ | ||
7 | 7 | *===-----------------------------------------------------------------------=== |
8 | 8 | */ |
9 | 9 | |
10 | +#ifndef _VECINTRIN_H | |
11 | +#define _VECINTRIN_H | |
12 | + | |
10 | 13 | #if defined(__s390x__) && defined(__VEC__) |
11 | 14 | |
12 | 15 | #define __ATTRS_ai __attribute__((__always_inline__)) |
@@ -12861,3 +12864,5 @@ vec_search_string_until_zero_cc(__vector unsigned int __a, | ||
12861 | 12864 | #error "Use -fzvector to enable vector extensions" |
12862 | 12865 | |
12863 | 12866 | #endif |
12867 | + | |
12868 | +#endif /* _VECINTRIN_H */ |