Skip to content

Commit ab1a69d

Browse files
author
Tony Tao
committed
minor doc format fix
1 parent 7a6626f commit ab1a69d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/docs/LanguageExtensions.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2272,7 +2272,7 @@ by local register variables, such as:
22722272
assemblies if the value is expected in different hard regs
22732273

22742274
The code below is an example of an inline assembly statement using local
2275-
register variables.
2275+
register variables:
22762276

22772277
.. code-block:: c++
22782278

@@ -2282,6 +2282,7 @@ register variables.
22822282
register int *result asm ("r0");
22832283
asm ("sysint" : "=r" (result) : "0" (p1), "r" (p2));
22842284
}
2285+
22852286
Below is the same code but using hard register operands.
22862287

22872288
.. code-block:: c++

0 commit comments

Comments
 (0)