Don't analyze block if it's not considered for ifcvt anymore.
[llvm/stm8.git] / test / FrontendC / 2006-05-01-AppleAlignmentPragma.c
blob233968b51aa38afaa9ba0b08784eff8b11d9d199
1 // RUN: %llvmgcc %s -S -o -
3 #ifdef __APPLE__
4 /* test that X is laid out correctly when this pragma is used. */
5 #pragma options align=mac68k
6 #endif
8 struct S {
9 unsigned A;
10 unsigned short B;
11 } X;