2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-13 15:51:01 +08:00

Fix FAIL: gcc.target/i386/pr92645-4.c

This adjusts the testcase for the introduced vector promotion/demotion
support.

2020-05-19  Richard Biener  <rguenther@suse.de>

	* gcc.target/i386/pr92645-4.c: Adjust expected pattern.
This commit is contained in:
Richard Biener 2020-05-19 20:30:40 +02:00
parent a641d6d3e6
commit 6e7ae154dc
2 changed files with 7 additions and 3 deletions
gcc/testsuite
ChangeLog
gcc.target/i386

@ -1,3 +1,7 @@
2020-05-19 Richard Biener <rguenther@suse.de>
* gcc.target/i386/pr92645-4.c: Adjust expected pattern.
2020-05-19 Jozef Lawrynowicz <jozef.l@mittosystems.com>
* c-c++-common/builtin-has-attribute-7.c: Require size24plus.

@ -47,10 +47,10 @@ void f(char *dst, char *src, unsigned long n, unsigned c)
}
}
/* { dg-final { scan-tree-dump-times "vec_unpack_lo" 3 "optimized" } } */
/* { dg-final { scan-tree-dump-times "\\(vector\\(16\\) short unsigned int\\)" 3 "optimized" } } */
/* We're missing an opportunity to, after later optimizations, combine
a uniform CTOR with a vec_unpack_lo_expr to a CTOR on a converted
a uniform CTOR with a vector promotion to a CTOR on a promoted
element. */
/* { dg-final { scan-tree-dump-times "vec_unpack_lo" 2 "optimized" { xfail *-*-* } } } */
/* { dg-final { scan-tree-dump-times "\\(vector\\(16\\) short unsigned int\\)" 2 "optimized" { xfail *-*-* } } } */
/* { dg-final { scan-tree-dump-times "VEC_PACK_TRUNC" 1 "optimized" } } */
/* { dg-final { scan-tree-dump-times "BIT_FIELD_REF" 2 "optimized" } } */