- Make BranchProbability constructor public.
[llvm/stm8.git] / test / FrontendC / 2009-02-17-BitField-dbg.c
blob88d2cbba48d8cbe20e503d5f1db205b8b00d4191
1 // Check bitfields.
2 // RUN: %llvmgcc -S -O0 -g %s -o - | \
3 // RUN: llc -disable-cfi --disable-fp-elim -o 2009-02-17-BitField-dbg.s
4 // RUN: %compile_c 2009-02-17-BitField-dbg.s -o 2009-02-17-BitField-dbg.o
5 // RUN: echo {ptype mystruct} > %t2
6 // RUN: gdb -q -batch -n -x %t2 2009-02-17-BitField-dbg.o | \
7 // RUN: tee 2009-02-17-BitField-dbg.out | grep "int a : 4"
8 //
10 struct {
11 int a:4;
12 int b:2;
13 } mystruct;