commit | 32666c5491b398106f926a0ce9f1dca40ad576b0 | [log] [tgz] |
---|---|---|
author | Seo Sanghyeon <sanxiyn@gmail.com> | Fri Dec 14 02:04:12 2007 +0000 |
committer | Seo Sanghyeon <sanxiyn@gmail.com> | Fri Dec 14 02:04:12 2007 +0000 |
tree | 790df41300db0706ca8b250d758253ea1c3dba3e | |
parent | b77fa9e99801a8f0e301f9daf6eebb759fea68d3 [diff] [blame] |
Array subscription in aggregate expression git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45023 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/struct.c b/test/CodeGen/struct.c index 34cbec5..a52e538 100644 --- a/test/CodeGen/struct.c +++ b/test/CodeGen/struct.c
@@ -94,6 +94,11 @@ range r = *p; } +void f10(range *p) +{ + range r = p[0]; +} + /* _Bool types */ struct _w