From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1314) id 294823857C5C; Mon, 8 Aug 2022 03:36:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 294823857C5C MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Andrew Pinski To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-1986] Move testcase gcc.dg/tree-ssa/pr93776.c to gcc.c-torture/compile/pr93776.c X-Act-Checkin: gcc X-Git-Author: Andrew Pinski X-Git-Refname: refs/heads/trunk X-Git-Oldrev: 37e8e63d3c65cb76d92773b280f6b9d33a60becf X-Git-Newrev: 2633c8d8f338f1e2b53d3757f3edf4179bfcc218 Message-Id: <20220808033610.294823857C5C@sourceware.org> Date: Mon, 8 Aug 2022 03:36:10 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Aug 2022 03:36:10 -0000 https://gcc.gnu.org/g:2633c8d8f338f1e2b53d3757f3edf4179bfcc218 commit r13-1986-g2633c8d8f338f1e2b53d3757f3edf4179bfcc218 Author: Andrew Pinski Date: Sun Aug 7 13:51:43 2022 -0700 Move testcase gcc.dg/tree-ssa/pr93776.c to gcc.c-torture/compile/pr93776.c Since this testcase is not exactly SSA specific and it would be a good idea to compile this at more than just at -O1, moving it to gcc.c-torture/compile would do that. Committed as obvious after a test on x86_64-linux-gnu. gcc/testsuite/ChangeLog: * gcc.dg/tree-ssa/pr93776.c: Moved to... * gcc.c-torture/compile/pr93776.c: ...here. Diff: --- gcc/testsuite/{gcc.dg/tree-ssa => gcc.c-torture/compile}/pr93776.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr93776.c b/gcc/testsuite/gcc.c-torture/compile/pr93776.c similarity index 76% rename from gcc/testsuite/gcc.dg/tree-ssa/pr93776.c rename to gcc/testsuite/gcc.c-torture/compile/pr93776.c index c407a627718..3852736c040 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/pr93776.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr93776.c @@ -1,5 +1,5 @@ -/* { dg-do compile } */ -/* { dg-options "-O1" } */ +/* This used to ICE in SRA as SRA got + confused by the zero signed assigment. */ struct empty {}; struct s { int i; };