public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-1540] analyzer: reorder initialization of state m_invalid in sm-fd.cc [PR106184]
@ 2022-07-06 16:46 Immad Mir
  0 siblings, 0 replies; only message in thread
From: Immad Mir @ 2022-07-06 16:46 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:3a6de2b2db500d76ac141a6ef85d336bd0f8430b

commit r13-1540-g3a6de2b2db500d76ac141a6ef85d336bd0f8430b
Author: Immad Mir <mirimmad@outlook.com>
Date:   Wed Jul 6 21:37:14 2022 +0530

    analyzer: reorder initialization of state m_invalid in sm-fd.cc [PR106184]
    
    This patch reorders the initialization of state m_invalid in sm-fd.cc
    so that the order of initializers is same as the ordering of the fields
    in the class decl.
    
    gcc/analyzer/ChangeLog:
            PR analyzer/106184
            * sm-fd.cc (fd_state_machine): Change ordering of initialization
            of state m_invalid so that the order of initializers is same as
            the ordering of the fields in the class decl.
    
    Signed-off-by: Immad Mir <mirimmad@outlook.com>

Diff:
---
 gcc/analyzer/sm-fd.cc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gcc/analyzer/sm-fd.cc b/gcc/analyzer/sm-fd.cc
index 8196d33223a..8e4300b06e2 100644
--- a/gcc/analyzer/sm-fd.cc
+++ b/gcc/analyzer/sm-fd.cc
@@ -551,11 +551,12 @@ fd_state_machine::fd_state_machine (logger *logger)
       m_unchecked_read_write (add_state ("fd-unchecked-read-write")),
       m_unchecked_read_only (add_state ("fd-unchecked-read-only")),
       m_unchecked_write_only (add_state ("fd-unchecked-write-only")),
-      m_invalid (add_state ("fd-invalid")),
       m_valid_read_write (add_state ("fd-valid-read-write")),
       m_valid_read_only (add_state ("fd-valid-read-only")),
       m_valid_write_only (add_state ("fd-valid-write-only")),
-      m_closed (add_state ("fd-closed")), m_stop (add_state ("fd-stop"))
+      m_invalid (add_state ("fd-invalid")),
+      m_closed (add_state ("fd-closed")),
+      m_stop (add_state ("fd-stop"))
 {
 }


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

only message in thread, other threads:[~2022-07-06 16:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-06 16:46 [gcc r13-1540] analyzer: reorder initialization of state m_invalid in sm-fd.cc [PR106184] Immad Mir

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