aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/address-unaligned.c
blob: 6719509051b3d65c6ef5a592cfb4e615f0f618fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -fsyntax-only -fms-extensions -verify %s
// expected-no-diagnostics

typedef
struct __attribute__((packed)) S1 {
  char c0;
  int x;
  char c1;
} S1;

void bar(__unaligned int *);

void foo(__unaligned S1* s1)
{
    bar(&s1->x);
}