summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/clang-analyzer-optin.performance.Padding.cpp
blob: 0b851a68d355a096b8ce09b89351ac5cb49cc6a3 (plain)
1
2
3
4
5
6
struct OverlyAlignedChar {
  char c1;
  int x;
  char c2;
  char c __attribute__((aligned(4096)));
};