view clang/test/Sema/address-unaligned.c @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children
line wrap: on
line source

// 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);
}