diff options
| author | Rui Ueyama <ruiu@google.com> | 2013-10-08 03:59:50 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2013-10-08 03:59:50 +0000 |
| commit | 7deb970d66788940c647e3f3e6a5446c85ef6d9b (patch) | |
| tree | 35efdbb4536d3a1392c8cc4b75ea2708edf72d62 | |
| parent | a1d4c10c61fe9541c0cc191f0ba702cc868da0a2 (diff) | |
| download | bcm5719-llvm-7deb970d66788940c647e3f3e6a5446c85ef6d9b.tar.gz bcm5719-llvm-7deb970d66788940c647e3f3e6a5446c85ef6d9b.zip | |
Use size_t instead of uint64_t to represent the vector length.
llvm-svn: 192165
| -rw-r--r-- | lld/include/lld/Driver/InputGraph.h | 2 |
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()); |

