aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/AsmWriter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-02-01 01:24:01 +0000
committerChris Lattner <sabre@nondot.org>2005-02-01 01:24:01 +0000
commit5c461404fed8d1def8eae02e6574bc5b16502575 (patch)
treed1c4a8adbcc88195013f8ff625374a8ce93c0672 /lib/VMCore/AsmWriter.cpp
parentac930048d6d8d12e6dced308cb884473cec4b897 (diff)
downloadexternal_llvm-5c461404fed8d1def8eae02e6574bc5b16502575.zip
external_llvm-5c461404fed8d1def8eae02e6574bc5b16502575.tar.gz
external_llvm-5c461404fed8d1def8eae02e6574bc5b16502575.tar.bz2
Update for API change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19960 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/AsmWriter.cpp')
-rw-r--r--lib/VMCore/AsmWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp
index d5a8a5c..cf937eb 100644
--- a/lib/VMCore/AsmWriter.cpp
+++ b/lib/VMCore/AsmWriter.cpp
@@ -1019,7 +1019,7 @@ void AssemblyWriter::printInfoComment(const Value &V) {
else
Out << ':' << SlotNum; // Print out the def slot taken.
}
- Out << " [#uses=" << V.use_size() << ']'; // Output # uses
+ Out << " [#uses=" << V.getNumUses() << ']'; // Output # uses
}
}