testsuite: skip PR103350 tests on big-endian

These tests are reduced from a C program and use gcc vector extensions and so
aren't endianness agnostic. As such skip them on BE.

gcc/testsuite/ChangeLog:

	* gcc.target/aarch64/pr103350-1.c: Skip on BE.
	* gcc.target/aarch64/pr103350-2.c: Likewise.
This commit is contained in:
Tamar Christina 2022-04-07 08:26:02 +01:00
parent 46c739d40c
commit 897b080e6d
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* { dg-do run } */
/* { dg-do run { target le } } */
/* { dg-additional-options "-Os -fno-tree-ter -save-temps -fdump-rtl-ree-all -free -std=c99 -w" } */
typedef unsigned char u8;

View File

@ -1,4 +1,4 @@
/* { dg-do run } */
/* { dg-do run { target le } } */
/* { dg-additional-options "-O2 -save-temps -fdump-rtl-ree-all -free -std=c99 -w" } */
typedef unsigned char __attribute__((__vector_size__ (8))) v64u8;