Chris Lattner | 8aaee32 | 2002-07-31 17:39:38 +0000 | [diff] [blame^] | 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 |