• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 typedef struct
4 {
5         unsigned char type;        /* Indicates, NORMAL, SUBNORMAL, etc. */
6 } InternalFPF;
7 
8 
SetInternalFPFZero(InternalFPF * dest)9 static void SetInternalFPFZero(InternalFPF *dest) {
10   dest->type=0;
11 }
12 
denormalize(InternalFPF * ptr)13 void denormalize(InternalFPF *ptr) {
14    SetInternalFPFZero(ptr);
15 }
16 
17