diff options
author | Chris Lattner <sabre@nondot.org> | 2002-03-12 18:56:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-03-12 18:56:45 +0000 |
commit | 015bf1a6ba72dec15628db24210aee34db473af3 (patch) | |
tree | 6d09c60e6f3b3c0ebafddad3070dd932322323ae | |
parent | 8ec585d330f4323f94778ec439bdc5d738390086 (diff) | |
download | bcm5719-llvm-015bf1a6ba72dec15628db24210aee34db473af3.tar.gz bcm5719-llvm-015bf1a6ba72dec15628db24210aee34db473af3.zip |
New testcase
llvm-svn: 1867
-rw-r--r-- | llvm/test/Regression/CFrontend/2002-03-12-StructInitializer.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/llvm/test/Regression/CFrontend/2002-03-12-StructInitializer.c b/llvm/test/Regression/CFrontend/2002-03-12-StructInitializer.c new file mode 100644 index 00000000000..de2d84781c4 --- /dev/null +++ b/llvm/test/Regression/CFrontend/2002-03-12-StructInitializer.c @@ -0,0 +1,16 @@ +/* GCC was not emitting string constants of the correct length when + * embedded into a structure field like this. It thought the strlength + * was -1. + */ + +typedef struct Connection_Type { + long to; + char type[10]; + long length; +} Connection; + +Connection link[3] += { {1, "link1", 10}, + {2, "link2", 20}, + {3, "link3", 30} }; + |