diff options
author | Devang Patel <dpatel@apple.com> | 2008-05-27 22:44:22 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-05-27 22:44:22 +0000 |
commit | bf20b68e925f2b0e87eff0da49dae8a4dbc0fac7 (patch) | |
tree | c5e423e29671ad4c4c71a5642638d03f98b7722f /test/CodeGen/struct.c | |
parent | bcfd5d4ac69a3589b52bde91106f03f30de9e804 (diff) |
Fix test case
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/struct.c')
-rw-r--r-- | test/CodeGen/struct.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/CodeGen/struct.c b/test/CodeGen/struct.c index a081ef1313..4c88c2539f 100644 --- a/test/CodeGen/struct.c +++ b/test/CodeGen/struct.c @@ -140,6 +140,7 @@ void f12() /* struct initialization */ struct a13 {int b; int c;}; struct a13 c13 = {5}; +typedef struct a13 a13; struct a14 { short a; int b; } x = {1, 1}; /* flexible array members */ |