Teach mergefunc that intptr_t is the same width as a pointer. We still can't
[llvm.git] / test / FrontendC / 2005-05-10-GlobalUnionInit.c
blob443064c921d59d8b736fc81648cd7c72624eb775
1 // RUN: %llvmgcc %s -S -o -
3 union A { // { uint }
4 union B { double *C; } D;
5 } E = { { (double*)12312 } };