From 621c65e0895e06e90fdb59d08b0b20af4fffac28 Mon Sep 17 00:00:00 2001 From: Stuart Hastings Date: Wed, 2 Mar 2011 23:24:44 +0000 Subject: [PATCH] Test case for r126672. Radar 9055247. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126896 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/FrontendC/2011-03-02-UnionInitializer.c | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/FrontendC/2011-03-02-UnionInitializer.c diff --git a/test/FrontendC/2011-03-02-UnionInitializer.c b/test/FrontendC/2011-03-02-UnionInitializer.c new file mode 100644 index 00000000000..a5ea75e08c0 --- /dev/null +++ b/test/FrontendC/2011-03-02-UnionInitializer.c @@ -0,0 +1,2 @@ +// RUN: %llvmgcc -S %s +union { int :3; double f; } u17_017 = {17.17};