diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-02 00:57:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-02 00:57:56 +0000 |
commit | 09dc5a68279f08a25736ddede0d759fe0b0b30c7 (patch) | |
tree | 1a25778960235a1e7751d38782ede80013958caf | |
parent | a1b82c3d3f8ac65a1d1d6cdd33b5038d24e0baf7 (diff) |
New testcase for PR79
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9645 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CFrontend/2003-11-01-GlobalUnionInit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/CFrontend/2003-11-01-GlobalUnionInit.c b/test/CFrontend/2003-11-01-GlobalUnionInit.c new file mode 100644 index 0000000000..83ee8c0417 --- /dev/null +++ b/test/CFrontend/2003-11-01-GlobalUnionInit.c @@ -0,0 +1,5 @@ +union bdflush_param { + struct { int x; } b_un; + int y[1]; +} bdf_prm = {{30}}; + |