Code style fix from Duncan P. N. Exon Smith.
authorYaron Keren <yaron.keren@gmail.com>
Fri, 2 May 2014 08:26:30 +0000 (08:26 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Fri, 2 May 2014 08:26:30 +0000 (08:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207831 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.rst

index d545cb2b347c2ba71fb6aeb47cf27cb0f1bc1968..8e6629ed49b9a97ae5fba96354cb0d424e5bebd3 100644 (file)
@@ -1755,7 +1755,7 @@ instruction uses (that is, the operands of the particular ``Instruction``):
 
   Instruction *pi = ...;
 
-  for (UseU : pi->operands()) {
+  for (Use &U : pi->operands()) {
     Value *v = U.get();
     // ...
   }