xref: /llvm-project/compiler-rt/test/profile/profile_test.h (revision 70f9cfc857f14ce7ae4057aea7b3568e6aa41d38)
1*70f9cfc8SFangrui Song 
2*70f9cfc8SFangrui Song 
39512c0a1SRainer Orth #ifndef PROFILE_TEST_H
49512c0a1SRainer Orth #define PROFILE_TEST_H
59512c0a1SRainer Orth 
69512c0a1SRainer Orth #if defined(_MSC_VER)
79512c0a1SRainer Orth # define ALIGNED(x) __declspec(align(x))
89512c0a1SRainer Orth #else  // _MSC_VER
99512c0a1SRainer Orth # define ALIGNED(x) __attribute__((aligned(x)))
109512c0a1SRainer Orth #endif
119512c0a1SRainer Orth 
129512c0a1SRainer Orth #endif  // PROFILE_TEST_H
13