From 56ab318214ef21e6c2a1b5e420e418e188386f04 Mon Sep 17 00:00:00 2001 From: Claudiu Zissulescu Date: Mon, 10 May 2021 09:03:41 +0300 Subject: [PATCH] arc: Fix documentation __builtin_arc_sr The arguments of __builtin_arc_sr are swapped in documentation. Fix it. gcc/ 2021-05-10 Claudiu Zissulescu * doc/extend.texi (__builtin_arc_sr): Swap arguments. Signed-off-by: Claudiu Zissulescu --- gcc/doc/extend.texi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index fd9175d..826804e 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -14709,12 +14709,12 @@ sleep @var{a} @end example @end deftypefn -@deftypefn {Built-in Function} void __builtin_arc_sr (unsigned int @var{auxr}, unsigned int @var{val}) -The first argument, @var{auxv}, is the address of an auxiliary -register, the second argument, @var{val}, is a compile time constant -to be written to the register. Generates: +@deftypefn {Built-in Function} void __builtin_arc_sr (unsigned int @var{val}, unsigned int @var{auxr}) +The first argument, @var{val}, is a compile time constant to be +written to the register, the second argument, @var{auxr}, is the +address of an auxiliary register. Generates: @example -sr @var{auxr}, [@var{val}] +sr @var{val}, [@var{auxr}] @end example @end deftypefn -- 2.7.4