diff options
author | Martin Liska <mliska@suse.cz> | 2022-11-13 21:59:12 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-11-14 09:35:05 +0100 |
commit | b4c839e7255cc6108a9a22146f064b740a5710ca (patch) | |
tree | ed9cd27c9879e1308236cce2a7d8fdfa19281237 /gcc/doc | |
parent | b779e6bf0b7cf03a96bc68a31be7d39ca383f645 (diff) | |
download | gcc-b4c839e7255cc6108a9a22146f064b740a5710ca.zip gcc-b4c839e7255cc6108a9a22146f064b740a5710ca.tar.gz gcc-b4c839e7255cc6108a9a22146f064b740a5710ca.tar.bz2 |
Revert "sphinx: use proper lexers for target macros"
This reverts commit c0eb1a3b7c944dd7cd5a4056a817a25aa8ce2569.
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/gccint/target-macros/tm.rst.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/doc/gccint/target-macros/tm.rst.in b/gcc/doc/gccint/target-macros/tm.rst.in index 44f3a3b..17fc9e1 100644 --- a/gcc/doc/gccint/target-macros/tm.rst.in +++ b/gcc/doc/gccint/target-macros/tm.rst.in @@ -1332,7 +1332,7 @@ Given below example: - .. code-block:: gas + .. code-block:: c++ ldr r10, [r1, 4] add r4, r4, r10 @@ -1349,7 +1349,7 @@ this scheduling fusion pass works. This hook calculates priority for each instruction based on its fustion type, like: - .. code-block:: gas + .. code-block:: c++ ldr r10, [r1, 4] ; fusion_pri=99, pri=96 add r4, r4, r10 ; fusion_pri=100, pri=100 @@ -1364,7 +1364,7 @@ to the priorities. As a result, instructions of same fusion type will be pushed together in instruction flow, like: - .. code-block:: gas + .. code-block:: c++ ldr r11, [r1, 0] ldr r10, [r1, 4] @@ -3876,13 +3876,13 @@ contain UNSPECs or UNSPEC_VOLATILEs. The DWARF 2 call frame debugging info engine will invoke it on insns of the form - .. code-block:: + .. code-block:: c++ (set (reg) (unspec [...] UNSPEC_INDEX)) and - .. code-block:: + .. code-block:: c++ (set (reg) (unspec_volatile [...] UNSPECV_INDEX)). @@ -3900,7 +3900,7 @@ register :samp:`{R}` and set :samp:`*{factor}` and :samp:`*{offset}` such that the value of the indeterminate is: - .. code-block:: + .. code-block:: c++ value_of(R) / factor - offset |