diff options
author | Tobias Burnus <tburnus@baylibre.com> | 2024-03-12 15:42:50 +0100 |
---|---|---|
committer | Tobias Burnus <tburnus@baylibre.com> | 2024-03-12 15:42:50 +0100 |
commit | ef79c64cb5762c86ee04ddfcedb7fe31eaa3bac8 (patch) | |
tree | e9aa49ec481994168cb21f1fa3122cf55c9b1170 | |
parent | 73dac51b32575f980289c073969c6d825963d076 (diff) | |
download | gcc-ef79c64cb5762c86ee04ddfcedb7fe31eaa3bac8.zip gcc-ef79c64cb5762c86ee04ddfcedb7fe31eaa3bac8.tar.gz gcc-ef79c64cb5762c86ee04ddfcedb7fe31eaa3bac8.tar.bz2 |
libgomp/libgomp.texi: Fix @node order in @menu
While texinfo 7.0.3 does not warn, an older texinfo did complain about:
libgomp.texi:1964: warning: node next `omp_target_memcpy' in menu
`omp_target_memcpy_rect' and in sectioning `omp_target_memcpy_async' differ
libgomp/
* libgomp.texi (Device Memory Routines): Swap item order to match
the order of the '@node's of the '@subsection's.
-rw-r--r-- | libgomp/libgomp.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/libgomp.texi b/libgomp/libgomp.texi index bf5c7a7..57165e0 100644 --- a/libgomp/libgomp.texi +++ b/libgomp/libgomp.texi @@ -1783,8 +1783,8 @@ pointers on devices. They have C linkage and do not throw exceptions. * omp_target_is_present:: Check whether storage is mapped * omp_target_is_accessible:: Check whether memory is device accessible * omp_target_memcpy:: Copy data between devices -* omp_target_memcpy_rect:: Copy a subvolume of data between devices * omp_target_memcpy_async:: Copy data between devices asynchronously +* omp_target_memcpy_rect:: Copy a subvolume of data between devices * omp_target_memcpy_rect_async:: Copy a subvolume of data between devices asynchronously @c * omp_target_memset:: <fixme>/TR12 @c * omp_target_memset_async:: <fixme>/TR12 |