summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lld/include/lld/Driver/InputGraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/include/lld/Driver/InputGraph.h b/lld/include/lld/Driver/InputGraph.h
index 9842c18a9aa..4267c19b910 100644
--- a/lld/include/lld/Driver/InputGraph.h
+++ b/lld/include/lld/Driver/InputGraph.h
@@ -87,7 +87,7 @@ public:
virtual bool validate();
// \brief Does the inputGraph contain any elements
- int64_t size() const { return _inputArgs.size(); }
+ size_t size() const { return _inputArgs.size(); }
/// \brief Dump the input Graph
virtual bool dump(raw_ostream &diagnostics = llvm::errs());
OpenPOWER on IntegriCloud