[llvm] r372326 - [docs] Break long (>80) line. NFC

Francesco Petrogalli via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 19 07:19:33 PDT 2019


Author: fpetrogalli
Date: Thu Sep 19 07:19:32 2019
New Revision: 372326

URL: http://llvm.org/viewvc/llvm-project?rev=372326&view=rev
Log:
[docs] Break long (>80) line. NFC

Modified:
    llvm/trunk/docs/Frontend/PerformanceTips.rst

Modified: llvm/trunk/docs/Frontend/PerformanceTips.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Frontend/PerformanceTips.rst?rev=372326&r1=372325&r2=372326&view=diff
==============================================================================
--- llvm/trunk/docs/Frontend/PerformanceTips.rst (original)
+++ llvm/trunk/docs/Frontend/PerformanceTips.rst Thu Sep 19 07:19:32 2019
@@ -21,7 +21,8 @@ surprisingly small changes in the source
 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 




More information about the llvm-commits mailing list