blob: 5801d03a09938a75ebc628f66e8be8bd2f03b265 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner8aaee322002-07-31 17:39:38 +00003typedef struct
4{
5 unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */
6} InternalFPF;
7
8
9static void SetInternalFPFZero(InternalFPF *dest) {
10 dest->type=0;
11}
12
13void denormalize(InternalFPF *ptr) {
14 SetInternalFPFZero(ptr);
15}
16