diff options
author | Rui Ueyama <ruiu@google.com> | 2014-04-02 21:57:29 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2014-04-02 21:57:29 +0000 |
commit | 7c62b1e2df601630c9cf5074560763e944974c93 (patch) | |
tree | 49563018d1336e32c4e4da325736624e88e3c199 | |
parent | 88c8599de947e9f0531acea5be9f78b7b16edac2 (diff) | |
download | bcm5719-llvm-7c62b1e2df601630c9cf5074560763e944974c93.tar.gz bcm5719-llvm-7c62b1e2df601630c9cf5074560763e944974c93.zip |
Minor cleanup.
llvm-svn: 205470
-rw-r--r-- | lld/include/lld/Core/InputGraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/include/lld/Core/InputGraph.h b/lld/include/lld/Core/InputGraph.h index 2cd0c82dc10..0d1ca64bb15 100644 --- a/lld/include/lld/Core/InputGraph.h +++ b/lld/include/lld/Core/InputGraph.h @@ -95,7 +95,7 @@ public: bool dump(raw_ostream &diagnostics = llvm::errs()); InputElement &operator[](size_t index) const { - return (*_inputArgs[index]); + return *_inputArgs[index]; } /// \brief Insert an element into the input graph at position. |