diff options
author | Hu Jiangping <hujiangping@cn.fujitsu.com> | 2020-08-18 17:47:08 +0100 |
---|---|---|
committer | Richard Sandiford <richard.sandiford@arm.com> | 2020-08-18 17:47:08 +0100 |
commit | 16bea83ae55fdbb4d1e79f27c991c2b682813755 (patch) | |
tree | 007ee07f26b4186c33c72477b957746f75c89b89 /gcc/doc/gimple.texi | |
parent | b1f58acd3a68801106d76abd9c5fff7c34401b6d (diff) | |
download | gcc-16bea83ae55fdbb4d1e79f27c991c2b682813755.zip gcc-16bea83ae55fdbb4d1e79f27c991c2b682813755.tar.gz gcc-16bea83ae55fdbb4d1e79f27c991c2b682813755.tar.bz2 |
doc: add return type for functions in gimple.texi
gcc/
* doc/gimple.texi (gimple_debug_begin_stmt_p): Add return type.
(gimple_debug_inline_entry_p, gimple_debug_nonbind_marker_p): Likewise.
Diffstat (limited to 'gcc/doc/gimple.texi')
-rw-r--r-- | gcc/doc/gimple.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/gimple.texi b/gcc/doc/gimple.texi index 5e0fc2e..f01c308 100644 --- a/gcc/doc/gimple.texi +++ b/gcc/doc/gimple.texi @@ -831,17 +831,17 @@ expression to a variable. Return true if g is any of the OpenMP codes. @end deftypefn -@deftypefn {GIMPLE function} gimple_debug_begin_stmt_p (gimple g) +@deftypefn {GIMPLE function} bool gimple_debug_begin_stmt_p (gimple g) Return true if g is a @code{GIMPLE_DEBUG} that marks the beginning of a source statement. @end deftypefn -@deftypefn {GIMPLE function} gimple_debug_inline_entry_p (gimple g) +@deftypefn {GIMPLE function} bool gimple_debug_inline_entry_p (gimple g) Return true if g is a @code{GIMPLE_DEBUG} that marks the entry point of an inlined function. @end deftypefn -@deftypefn {GIMPLE function} gimple_debug_nonbind_marker_p (gimple g) +@deftypefn {GIMPLE function} bool gimple_debug_nonbind_marker_p (gimple g) Return true if g is a @code{GIMPLE_DEBUG} that marks a program location, without any variable binding. @end deftypefn |