public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc/devel/rust/master] Enhance #1426 "Invalid recursive :stmt expansion in fragment specifiers" test case
@ 2022-08-09 20:38 Thomas Schwinge
  0 siblings, 0 replies; only message in thread
From: Thomas Schwinge @ 2022-08-09 20:38 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:23702abda4ec44466f65581391ba9c0eae3f13f6

commit 23702abda4ec44466f65581391ba9c0eae3f13f6
Author: Thomas Schwinge <thomas@codesourcery.com>
Date:   Sat Aug 6 13:13:40 2022 +0200

    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.

Diff:
---
 .../compile/{macro-issue1403.rs => torture/macro-issue1426.rs}     | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

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() {


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

only message in thread, other threads:[~2022-08-09 20:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-09 20:38 [gcc/devel/rust/master] Enhance #1426 "Invalid recursive :stmt expansion in fragment specifiers" test case Thomas Schwinge

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).