public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r14-4299] OpenMP: GIMPLE_OMP_STRUCTURED_BLOCK bug fix
@ 2023-09-27 15:29 Sandra Loosemore
  0 siblings, 0 replies; only message in thread
From: Sandra Loosemore @ 2023-09-27 15:29 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:0f205d089c27ac04fb983a1b2be38cae0d83e5c7

commit r14-4299-g0f205d089c27ac04fb983a1b2be38cae0d83e5c7
Author: Sandra Loosemore <sandra@codesourcery.com>
Date:   Wed Sep 27 03:21:43 2023 +0000

    OpenMP: GIMPLE_OMP_STRUCTURED_BLOCK bug fix
    
    This is a bug fix for commit a62c8324e7e31ae6614f549bdf9d8a653233f8fc,
    which added GIMPLE_OMP_STRUCTURED_BLOCK.  I found a big switch statement
    over gimple codes that needs to know about this new node, but didn't.
    
    gcc/ChangeLog
            * gimple.cc (gimple_copy): Add case GIMPLE_OMP_STRUCTURED_BLOCK.

Diff:
---
 gcc/gimple.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gcc/gimple.cc b/gcc/gimple.cc
index d5a4f634416..46f28784e07 100644
--- a/gcc/gimple.cc
+++ b/gcc/gimple.cc
@@ -2163,6 +2163,7 @@ gimple_copy (gimple *stmt)
 
 	case GIMPLE_OMP_SECTION:
 	case GIMPLE_OMP_MASTER:
+	case GIMPLE_OMP_STRUCTURED_BLOCK:
 	copy_omp_body:
 	  new_seq = gimple_seq_copy (gimple_omp_body (stmt));
 	  gimple_omp_set_body (copy, new_seq);

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

only message in thread, other threads:[~2023-09-27 15:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-27 15:29 [gcc r14-4299] OpenMP: GIMPLE_OMP_STRUCTURED_BLOCK bug fix Sandra Loosemore

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