Verify the predicates on icmp/fcmp. Suggested by Jeff Yasskin!
[llvm.git] / test / FrontendC++ / 2007-04-05-PackedBitFieldsOverlap.cpp
blob46a89491ee216d123753a6b97d5cfd7950d903cf
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
4 #ifdef PACKED
5 #define P __attribute__((packed))
6 #else
7 #define P
8 #endif
10 struct P M_Packed {
11 unsigned int l_Packed;
12 unsigned short k_Packed : 6,
13 i_Packed : 15;
14 char c;
16 };
18 struct M_Packed sM_Packed;
20 int testM_Packed (void) {
21 struct M_Packed x;
22 return (x.i_Packed != 0);