]> xenbits.xensource.com Git - xen.git/commitdiff
docs/misra: add Terms & Definitions section to rules.rst
authorFederico Serafini <federico.serafini@bugseng.com>
Mon, 6 May 2024 07:24:37 +0000 (09:24 +0200)
committerJan Beulich <jbeulich@suse.com>
Mon, 6 May 2024 07:24:37 +0000 (09:24 +0200)
Add a section for terms and definitions used by MISRA but expressed
in terms of the C specification.

Add a definition of "switch clause" to the newly-introduced section.

Link the first use of the term "switch clause" in the document to its
definition.

Suggested-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Federico Serafini <federico.serafini@bugseng.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
docs/misra/rules.rst

index b7b447e1524f63b9675908c08d8a5a8c8c515f17..d3b70fdf04ebd8151b1ec75cbb2abe63314cb3ff 100644 (file)
@@ -489,8 +489,7 @@ maintainers if you want to suggest a change.
 
    * - `Rule 16.3 <https://gitlab.com/MISRA/MISRA-C/MISRA-C-2012/Example-Suite/-/blob/master/R_16_03.c>`_
      - Required
-     - An unconditional break statement shall terminate every
-       switch-clause
+     - An unconditional break statement shall terminate every switch-clause_
      - In addition to break, also other unconditional flow control statements
        such as continue, return, goto are allowed.
 
@@ -712,3 +711,14 @@ maintainers if you want to suggest a change.
      - The value of a pointer to a FILE shall not be used after the associated
        stream has been closed
      -
+
+Terms & Definitions
+-------------------
+
+.. _switch-clause:
+
+A *switch clause* can be defined as:
+"the non-empty list of statements which follows a non-empty list of
+case/default labels".
+A formal definition is available within the amplification of MISRA C:2012
+Rule 16.1.