re PR target/82281 (Bulldozer/Zen tuning: uses XMM for single 64-bit integer AND, even with a simple mask)

PR target/82281
	* gcc.target/i386/pr82281.c: New testcase.

From-SVN: r254939
This commit is contained in:
Jan Hubicka 2017-11-19 21:30:26 +01:00 committed by Jan Hubicka
parent 43502b8313
commit 290295fdf8
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2017-11-19 Jan Hubicka <hubicka@ucw.cz>
PR target/82281
* gcc.target/i386/pr82281.c: New testcase.
2017-11-19 Jan Hubicka <hubicka@ucw.cz>
PR ipa/81360

View File

@ -0,0 +1,6 @@
/* { dg-do compile } */
/* { dg-options "-O3 -m32" } */
long long test_and(long long x) {
return x & 0x77ffffffffULL;
}
/* { dg-final { scan-assembler-not "xmm" } } */