Skip to content

Commit

Permalink
Code style fix from Duncan P. N. Exon Smith.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207831 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
yrnkrn committed May 2, 2014
1 parent 26ad3eb commit 74e9519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ProgrammersManual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1755,7 +1755,7 @@ instruction uses (that is, the operands of the particular ``Instruction``):

Instruction *pi = ...;
for (Use& U : pi->operands()) {
for (Use &U : pi->operands()) {
Value *v = U.get();
// ...
}
Expand Down

0 comments on commit 74e9519

Please sign in to comment.