[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / 2002-07-31-BadAssert.c
blob512a63a09a298ac629ac2ebf4a15c4b55bc79f37
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 typedef struct
5 unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */
6 } InternalFPF;
9 static void SetInternalFPFZero(InternalFPF *dest) {
10 dest->type=0;
13 void denormalize(InternalFPF *ptr) {
14 SetInternalFPFZero(ptr);