I must have missed these when eliminating the cast to bool cannonicalizations
[oota-llvm.git] / test / CFrontend / 2002-07-31-BadAssert.c
1 typedef struct
2 {
3         unsigned char type;        /* Indicates, NORMAL, SUBNORMAL, etc. */
4 } InternalFPF;
5
6
7 static void SetInternalFPFZero(InternalFPF *dest) {
8   dest->type=0;
9 }
10
11 void denormalize(InternalFPF *ptr) {
12    SetInternalFPFZero(ptr);
13 }
14