brintos

brintos / llvm-project-archived public Read only

0
0
Text · 213 B · 557db99 Raw
13 lines · c
1 2 3#ifndef PROFILE_TEST_H4#define PROFILE_TEST_H5 6#if defined(_MSC_VER)7# define ALIGNED(x) __declspec(align(x))8#else  // _MSC_VER9# define ALIGNED(x) __attribute__((aligned(x)))10#endif11 12#endif  // PROFILE_TEST_H13