| Tanya Lattner | e9af5d1 | 2004-11-06 22:41:00 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null | 
| 2 | |||||
| Chris Lattner | 8aaee32 | 2002-07-31 17:39:38 +0000 | [diff] [blame] | 3 | typedef struct | 
| 4 | { | ||||
| 5 | unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */ | ||||
| 6 | } InternalFPF; | ||||
| 7 | |||||
| 8 | |||||
| 9 | static void SetInternalFPFZero(InternalFPF *dest) { | ||||
| 10 | dest->type=0; | ||||
| 11 | } | ||||
| 12 | |||||
| 13 | void denormalize(InternalFPF *ptr) { | ||||
| 14 | SetInternalFPFZero(ptr); | ||||
| 15 | } | ||||
| 16 | |||||