Code style fix from Duncan P. N. Exon Smith.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207831 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Yaron Keren 2014-05-02 08:26:30 +00:00
parent 26ad3eb69d
commit 74e9519ef9

View File

@ -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();
// ...
}