blob: 5c3d74cfb6beff35933c9f729f26f04a6dd997da [file] [log] [blame]
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
typedef struct
{
unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */
} InternalFPF;
static void SetInternalFPFZero(InternalFPF *dest) {
dest->type=0;
}
void denormalize(InternalFPF *ptr) {
SetInternalFPFZero(ptr);
}