[llvm] r207831 - Code style fix from Duncan P. N. Exon Smith.

Yaron Keren yaron.keren at gmail.com
Fri May 2 01:26:30 PDT 2014


Author: yrnkrn
Date: Fri May  2 03:26:30 2014
New Revision: 207831

URL: http://llvm.org/viewvc/llvm-project?rev=207831&view=rev
Log:
Code style fix from Duncan P. N. Exon Smith.


Modified:
    llvm/trunk/docs/ProgrammersManual.rst

Modified: llvm/trunk/docs/ProgrammersManual.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.rst?rev=207831&r1=207830&r2=207831&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.rst (original)
+++ llvm/trunk/docs/ProgrammersManual.rst Fri May  2 03:26:30 2014
@@ -1755,7 +1755,7 @@ instruction uses (that is, the operands
 
   Instruction *pi = ...;
 
-  for (Use& U : pi->operands()) {
+  for (Use &U : pi->operands()) {
     Value *v = U.get();
     // ...
   }





More information about the llvm-commits mailing list