blob: 5801d03a09938a75ebc628f66e8be8bd2f03b265 [file] [log] [blame]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -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);
}