]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.target/arm/pure-code/pr94538-1.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / arm / pure-code / pr94538-1.c
CommitLineData
259d0720
CL
1/* { dg-do compile } */
2/* { dg-skip-if "skip override" { *-*-* } { "-mfloat-abi=hard" } { "" } } */
3/* { dg-options "-mpure-code -mcpu=cortex-m23 -march=armv8-m.base -mthumb -mfloat-abi=soft" } */
4
5typedef int __attribute__ ((__vector_size__ (16))) V;
6
7V v;
8
9void
10foo (void)
11{
12 v += (V){4095};
13}