From 23702abda4ec44466f65581391ba9c0eae3f13f6 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Sat, 6 Aug 2022 13:13:40 +0200 Subject: [PATCH] Enhance #1426 "Invalid recursive :stmt expansion in fragment specifiers" test case ... that was recently added in #1429 commit 9fc6a27b5c6ea2c775646c4474b9084da76b1764 "expand: correctly handles non-macro nodes ...". - Rename 'macro-issue1403.rs' -> 'macro-issue1426.rs'. - Get rid of '-w'; expect diagnostic instead. - Get rid of debugging options not relevant here. - Get rid of explicit '-O1'; make it a "torture" test case. - Replace always-matching 'scan-assembler "14"' ("14" appears in the crate name) with directed dump scanning. - ..., just not for '-O0', where such optimization is not done. --- .../{macro-issue1403.rs => torture/macro-issue1426.rs} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) rename gcc/testsuite/rust/compile/{macro-issue1403.rs => torture/macro-issue1426.rs} (63%) diff --git a/gcc/testsuite/rust/compile/macro-issue1403.rs b/gcc/testsuite/rust/compile/torture/macro-issue1426.rs similarity index 63% rename from gcc/testsuite/rust/compile/macro-issue1403.rs rename to gcc/testsuite/rust/compile/torture/macro-issue1426.rs index 756d374e25c..1b558cfa83d 100644 --- a/gcc/testsuite/rust/compile/macro-issue1403.rs +++ b/gcc/testsuite/rust/compile/torture/macro-issue1426.rs @@ -1,5 +1,5 @@ -// { dg-do compile } -// { dg-options "-O1 -gdwarf-5 -dA -w" } +// { dg-additional-options -fdump-tree-ccp1-raw } + macro_rules! stmt { ($s:stmt) => { $s @@ -13,6 +13,7 @@ macro_rules! stmt { pub fn test() -> i32 { stmt!( let a = 1 + // { dg-warning {unused name 'a'} {} { target *-*-* } .-1 } ); stmt!( let b = 2, @@ -21,8 +22,8 @@ pub fn test() -> i32 { let e = 5, let f = b + c + d + e ); - // { dg-final { scan-assembler "14" } } f + // { dg-final { scan-tree-dump-times {gimple_return <14>} 1 ccp1 { target __OPTIMIZE__ } } } } fn main() {