]> granicus.if.org Git - llvm/commitdiff
[docs] Break long (>80) line. NFC
authorFrancesco Petrogalli <francesco.petrogalli@arm.com>
Thu, 19 Sep 2019 14:19:32 +0000 (14:19 +0000)
committerFrancesco Petrogalli <francesco.petrogalli@arm.com>
Thu, 19 Sep 2019 14:19:32 +0000 (14:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@372326 91177308-0d34-0410-b5e6-96231b3b80d8

docs/Frontend/PerformanceTips.rst

index 142d262eb65739ff0ac57fc6eaf4d8daadddab70..2c356de14cdbdc5c1c8a323141feba64be8a7e3a 100644 (file)
@@ -21,7 +21,8 @@ surprisingly small changes in the source IR can have a large effect on the
 generated code.  
 
 Beyond the specific items on the list below, it's worth noting that the most 
-mature frontend for LLVM is Clang.  As a result, the further your IR gets from what Clang might emit, the less likely it is to be effectively optimized.  It 
+mature frontend for LLVM is Clang.  As a result, the further your IR gets from
+what Clang might emit, the less likely it is to be effectively optimized. It
 can often be useful to write a quick C program with the semantics you're trying
 to model and see what decisions Clang's IRGen makes about what IR to emit.  
 Studying Clang's CodeGen directory can also be a good source of ideas.  Note