[llvm] r342948 - [llvm-exegesis] Fix doc in r342947.

Clement Courbet via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 25 00:48:39 PDT 2018


Author: courbet
Date: Tue Sep 25 00:48:38 2018
New Revision: 342948

URL: http://llvm.org/viewvc/llvm-project?rev=342948&view=rev
Log:
[llvm-exegesis] Fix doc in r342947.

llvm-exegesis.rst was using invalid indentation for bullet points.

Modified:
    llvm/trunk/docs/CommandGuide/llvm-exegesis.rst

Modified: llvm/trunk/docs/CommandGuide/llvm-exegesis.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/llvm-exegesis.rst?rev=342948&r1=342947&r2=342948&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/llvm-exegesis.rst (original)
+++ llvm/trunk/docs/CommandGuide/llvm-exegesis.rst Tue Sep 25 00:48:38 2018
@@ -93,14 +93,15 @@ Real-life code snippets typically depend
 :program:`llvm-exegesis` checks the liveliness of registers (i.e. any register
 use has a corresponding def or is a "live in"). If your code depends on the
 value of some registers, you have two options:
-  - Mark the register as requiring a definition. :program:`llvm-exegesis` will
-    automatically assign a value to the register. This can be done using the
-    directive `LLVM-EXEGESIS-DEFREG <reg name> <hex_value>`, where `<hex_value>`
-    is a bit pattern used to fill `<reg_name>`. If `<hex_value>` is smaller than
-    the register width, it will be sign-extended.
-  - Mark the register as a "live in". :program:`llvm-exegesis` will benchmark
-    using whatever value was in this registers on entry. This can be done using
-    the directive `LLVM-EXEGESIS-LIVEIN <reg name>`.
+
+- Mark the register as requiring a definition. :program:`llvm-exegesis` will
+  automatically assign a value to the register. This can be done using the
+  directive `LLVM-EXEGESIS-DEFREG <reg name> <hex_value>`, where `<hex_value>`
+  is a bit pattern used to fill `<reg_name>`. If `<hex_value>` is smaller than
+  the register width, it will be sign-extended.
+- Mark the register as a "live in". :program:`llvm-exegesis` will benchmark
+  using whatever value was in this registers on entry. This can be done using
+  the directive `LLVM-EXEGESIS-LIVEIN <reg name>`.
 
 For example, the following code snippet depends on the values of XMM1 (which
 will be set by the tool) and the memory buffer passed in RDI (live in).




More information about the llvm-commits mailing list