- Make BranchProbability constructor public.
[llvm/stm8.git] / test / FrontendC / 2010-07-14-overconservative-align.c
blobc4a9caac66661a4a80c4215bdcbf9c731251e5a3
1 // RUN: %llvmgcc %s -S -o - | FileCheck %s
2 // PR 5995
3 struct s {
4 int word;
5 struct {
6 int filler __attribute__ ((aligned (8)));
7 };
8 };
10 void func (struct s *s)
12 // CHECK: load %struct.s** %s_addr, align {{[48]}}
13 s->word = 0;