public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-3206] gcc.target/i386/pr78904-4a.c: Compile with -mtune=generic
@ 2020-09-15 14:37 H.J. Lu
  0 siblings, 0 replies; only message in thread
From: H.J. Lu @ 2020-09-15 14:37 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:9e89fa0e2d7da77236cad50c0a9a33b7a4b97367

commit r11-3206-g9e89fa0e2d7da77236cad50c0a9a33b7a4b97367
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Tue Sep 15 07:21:58 2020 -0700

    gcc.target/i386/pr78904-4a.c: Compile with -mtune=generic
    
    commit e95395926a84a2406faefe0995295d199d595440
    Author: Uros Bizjak <ubizjak@gmail.com>
    Date:   Thu Jun 18 20:12:48 2020 +0200
    
        i386: Fix mode of ZERO_EXTRACT RTXes, remove ext_register_operand predicate.
    
    caused
    
    FAIL: gcc.target/i386/pr78904-4a.c scan-assembler [ \t]movb[\t ]+%.h, t
    
    when compiled with --target_board='unix{-m32\ -march=cascadelake}'.  With
    -mtune=generic:
    
            movzwl  4(%esp), %edx
            movl    8(%esp), %eax
            movb    %dh, t(%eax)
            ret
    
    With -mtune=cascadelake:
    
            movzbl  5(%esp), %edx
            movl    8(%esp), %eax
            movb    %dl, t(%eax)
            ret
    
    Add -mtune=generic for --target_board='unix{-m32\ -march=cascadelake}'.
    
            * gcc.target/i386/pr78904-4a.c: Compile with -mtune=generic.

Diff:
---
 gcc/testsuite/gcc.target/i386/pr78904-4a.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/testsuite/gcc.target/i386/pr78904-4a.c b/gcc/testsuite/gcc.target/i386/pr78904-4a.c
index 5e6159a7648..6a100c01667 100644
--- a/gcc/testsuite/gcc.target/i386/pr78904-4a.c
+++ b/gcc/testsuite/gcc.target/i386/pr78904-4a.c
@@ -1,7 +1,7 @@
 /* PR target/78904 */
 /* { dg-do compile } */
 /* { dg-require-effective-target nonpic } */
-/* { dg-options "-O2 -masm=att" } */
+/* { dg-options "-O2 -masm=att -mtune=generic" } */
 
 typedef __SIZE_TYPE__ size_t;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-09-15 14:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-15 14:37 [gcc r11-3206] gcc.target/i386/pr78904-4a.c: Compile with -mtune=generic H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).