From 86ecf46fb4b83fff193be1f77d50269eac4078b7 Mon Sep 17 00:00:00 2001 From: Clement Courbet Date: Tue, 25 Sep 2018 07:48:38 +0000 Subject: [PATCH] [llvm-exegesis] Fix doc in r342947. llvm-exegesis.rst was using invalid indentation for bullet points. llvm-svn: 342948 --- llvm/docs/CommandGuide/llvm-exegesis.rst | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/llvm/docs/CommandGuide/llvm-exegesis.rst b/llvm/docs/CommandGuide/llvm-exegesis.rst index f48ef60..e9a4b9d 100644 --- a/llvm/docs/CommandGuide/llvm-exegesis.rst +++ b/llvm/docs/CommandGuide/llvm-exegesis.rst @@ -93,14 +93,15 @@ Real-life code snippets typically depend on registers or memory. :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 `, where `` - is a bit pattern used to fill ``. If `` 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 `. + +- 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 `, where `` + is a bit pattern used to fill ``. If `` 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 `. 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). -- 2.7.4