]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/doc/gccint/gimple/tuple-specific-accessors/gimplelabel.rst
sphinx: copy files from texi2rst-generated repository
[thirdparty/gcc.git] / gcc / doc / gccint / gimple / tuple-specific-accessors / gimplelabel.rst
1 ..
2 Copyright 1988-2022 Free Software Foundation, Inc.
3 This is part of the GCC manual.
4 For copying conditions, see the copyright.rst file.
5
6 .. index:: GIMPLE_LABEL
7
8 GIMPLE_LABEL
9 ^^^^^^^^^^^^
10
11 .. function:: glabel *gimple_build_label (tree label)
12
13 Build a ``GIMPLE_LABEL`` statement with corresponding to the tree
14 label, ``LABEL``.
15
16 .. function:: tree gimple_label_label (const glabel *g)
17
18 Return the ``LABEL_DECL`` node used by ``GIMPLE_LABEL`` statement ``G``.
19
20 .. function:: void gimple_label_set_label (glabel *g, tree label)
21
22 Set ``LABEL`` to be the ``LABEL_DECL`` node used by ``GIMPLE_LABEL``
23 statement ``G``.