Files
clang-p2996/compiler-rt/test/profile/profile_test.h
Fangrui Song 70f9cfc857 [builtins][test] Delete unneeded file headers
We don't add file headers to tests. The comments are useless as well -
their purpose can be easily inferred from the filenames.
2020-06-16 17:46:22 -07:00

13 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