blob: 9c4e5f67e6896604172674905eb4205af0aeedd3 [file] [log] [blame]
Chris Lattner8aaee322002-07-31 17:39:38 +00001typedef struct
2{
3 unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */
4} InternalFPF;
5
6
7static void SetInternalFPFZero(InternalFPF *dest) {
8 dest->type=0;
9}
10
11void denormalize(InternalFPF *ptr) {
12 SetInternalFPFZero(ptr);
13}
14