blob: 65fbdb83003b780d7909998c3d9d07cab4c134c0 [file] [log] [blame]
Dale Johannesenbe876e32010-07-14 21:22:35 +00001// RUN: %llvmgcc %s -emit-llvm -m64 -S -o - | FileCheck %s
2// PR 5995
3struct s {
4 int word;
5 struct {
6 int filler __attribute__ ((aligned (8)));
7 };
8};
9
10void func (struct s *s)
11{
12// CHECK: load %struct.s** %s_addr, align 8
13 s->word = 0;
14}