brintos

brintos / llvm-project-archived public Read only

0
0
Text · 297 B · 512a63a Raw
17 lines · c
1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null2 3typedef struct4{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 17