[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / clang / test / CodeGen / 2003-01-30-UnionInit.c
blob98aee727b4ecd45c3ca2ced955edbeeb630056e1
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 union foo {
4 struct { char A, B; } X;
5 int C;
6 };
8 union foo V = { {1, 2} };