15 lines · c
1// RUN: %clang_cc1 %s -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s2// PR 59953struct s {4 int word;5 struct {6 int filler __attribute__ ((aligned (8)));7 };8};9 10void func (struct s *s)11{12 // CHECK: load ptr, ptr{{.*}}align 813 s->word = 0;14}15