bolt/deps/llvm-18.1.8/compiler-rt/test/profile/profile_test.h
2025-02-14 19:21:04 +01:00

12 lines
213 B
C

#ifndef PROFILE_TEST_H
#define PROFILE_TEST_H
#if defined(_MSC_VER)
# define ALIGNED(x) __declspec(align(x))
#else // _MSC_VER
# define ALIGNED(x) __attribute__((aligned(x)))
#endif
#endif // PROFILE_TEST_H