diff options
author | Aldy Hernandez <aldyh@gcc.gnu.org> | 2003-06-04 01:12:00 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2003-06-04 01:12:00 +0000 |
commit | 120c6dca562969858e482a8157e03a09a84d7a20 (patch) | |
tree | 0b4908bb1cfc4a4e09d56ac55846d802ab05b1a3 | |
parent | dbe85b8010d4f19d60c14f70e70f97978a29960a (diff) | |
download | gcc-120c6dca562969858e482a8157e03a09a84d7a20.zip gcc-120c6dca562969858e482a8157e03a09a84d7a20.tar.gz gcc-120c6dca562969858e482a8157e03a09a84d7a20.tar.bz2 |
forgot to commit.
From-SVN: r67415
-rw-r--r-- | gcc/testsuite/g++.dg/init/array10.C | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/init/array10.C b/gcc/testsuite/g++.dg/init/array10.C new file mode 100644 index 0000000..a97793c --- /dev/null +++ b/gcc/testsuite/g++.dg/init/array10.C @@ -0,0 +1,5 @@ +// { dg-do compile } + +typedef int __attribute__((mode(V2SI))) vec; + +vec foo[] = { (vec) {1, 2} }; |