diff options
author | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-10-02 16:55:38 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-10-02 16:58:51 +0200 |
commit | 7b2b342a147993d586b8b028b5de635630afa631 (patch) | |
tree | a45799710ab527e21e5e760ed99bdeb986fc5455 /tests/headers/vector.hpp | |
parent | 48586e84394890c70f2a6817368b22b057702ed5 (diff) |
Stub Vector types with arrays.
Diffstat (limited to 'tests/headers/vector.hpp')
-rw-r--r-- | tests/headers/vector.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/headers/vector.hpp b/tests/headers/vector.hpp new file mode 100644 index 00000000..4707f77f --- /dev/null +++ b/tests/headers/vector.hpp @@ -0,0 +1,3 @@ +struct foo { + __attribute__((__vector_size__(1 * sizeof(long long)))) long long mMember; +}; |