Remove backported tests: - g++.dg/pr93195a.C - gcc.dg/tree-ssa/pr84859.c Fix assembly match on i586: - gcc.target/i386/pr93492-3.c - gcc.target/i386/pr93492-5.c OBS-URL: https://build.opensuse.org/request/show/927326 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gcc7?expand=0&rev=219
64 lines
2.8 KiB
Diff
64 lines
2.8 KiB
Diff
From 96c0b9515d054bdc339bc379610a9c6b383b5977 Mon Sep 17 00:00:00 2001
|
|
From: Uros Bizjak <ubizjak@gmail.com>
|
|
Date: Wed, 16 Aug 2017 20:44:28 +0200
|
|
Subject: [PATCH 04/22] Backport Adapt scan-assembler-times for alpha*-*-*
|
|
|
|
testsuite/ChangeLog
|
|
2021-10-07 Giuliano Belinassi <gbelinassi@suse.de>
|
|
|
|
Backport from mainline
|
|
2017-08-16 Uros Bizjak <ubizjak@gmail.com>
|
|
|
|
* c-c++-common/patchable_function_entry-decl.c (dg-final): Adapt
|
|
scan-assembler-times for alpha*-*-*.
|
|
* c-c++-common/patchable_function_entry-default.c (dg-final): Ditto.
|
|
* c-c++-common/patchable_function_entry-definition.c (dg-final): Ditto.
|
|
---
|
|
gcc/testsuite/c-c++-common/patchable_function_entry-decl.c | 3 ++-
|
|
gcc/testsuite/c-c++-common/patchable_function_entry-default.c | 3 ++-
|
|
.../c-c++-common/patchable_function_entry-definition.c | 3 ++-
|
|
3 files changed, 6 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/gcc/testsuite/c-c++-common/patchable_function_entry-decl.c b/gcc/testsuite/c-c++-common/patchable_function_entry-decl.c
|
|
index 5c39a354559..fb61ac31795 100644
|
|
--- a/gcc/testsuite/c-c++-common/patchable_function_entry-decl.c
|
|
+++ b/gcc/testsuite/c-c++-common/patchable_function_entry-decl.c
|
|
@@ -1,6 +1,7 @@
|
|
/* { dg-do compile { target { ! nvptx*-*-* } } } */
|
|
/* { dg-options "-O2 -fpatchable-function-entry=3,1" } */
|
|
-/* { dg-final { scan-assembler-times "nop" 2 } } */
|
|
+/* { dg-final { scan-assembler-times "nop" 2 { target { ! alpha*-*-* } } } } */
|
|
+/* { dg-final { scan-assembler-times "bis" 2 { target alpha*-*-* } } } */
|
|
|
|
extern int a;
|
|
|
|
diff --git a/gcc/testsuite/c-c++-common/patchable_function_entry-default.c b/gcc/testsuite/c-c++-common/patchable_function_entry-default.c
|
|
index 48094f75f78..c18f9e6bd39 100644
|
|
--- a/gcc/testsuite/c-c++-common/patchable_function_entry-default.c
|
|
+++ b/gcc/testsuite/c-c++-common/patchable_function_entry-default.c
|
|
@@ -1,6 +1,7 @@
|
|
/* { dg-do compile { target { ! nvptx*-*-* } } } */
|
|
/* { dg-options "-O2 -fpatchable-function-entry=3,1" } */
|
|
-/* { dg-final { scan-assembler-times "nop" 3 } } */
|
|
+/* { dg-final { scan-assembler-times "nop" 3 { target { ! alpha*-*-* } } } } */
|
|
+/* { dg-final { scan-assembler-times "bis" 3 { target alpha*-*-* } } } */
|
|
|
|
extern int a;
|
|
|
|
diff --git a/gcc/testsuite/c-c++-common/patchable_function_entry-definition.c b/gcc/testsuite/c-c++-common/patchable_function_entry-definition.c
|
|
index af8202f283b..54a57ba7226 100644
|
|
--- a/gcc/testsuite/c-c++-common/patchable_function_entry-definition.c
|
|
+++ b/gcc/testsuite/c-c++-common/patchable_function_entry-definition.c
|
|
@@ -1,6 +1,7 @@
|
|
/* { dg-do compile { target { ! nvptx*-*-* } } } */
|
|
/* { dg-options "-O2 -fpatchable-function-entry=3,1" } */
|
|
-/* { dg-final { scan-assembler-times "nop" 1 } } */
|
|
+/* { dg-final { scan-assembler-times "nop" 1 { target { ! alpha*-*-* } } } } */
|
|
+/* { dg-final { scan-assembler-times "bis" 1 { target alpha*-*-* } } } */
|
|
|
|
extern int a;
|
|
|
|
--
|
|
2.33.1
|
|
|