diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-12-04 22:45:27 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-12-04 22:45:27 +0000 |
commit | 62ab616666ce96812711e5876b93aa436db53dec (patch) | |
tree | 0ad294b98f6a98cf98f1019b10eae9312e2f1796 /clang/lib/CodeGen | |
parent | 0508e435c3bee175c42997eb6f3aa33ea241f84b (diff) | |
download | bcm5719-llvm-62ab616666ce96812711e5876b93aa436db53dec.tar.gz bcm5719-llvm-62ab616666ce96812711e5876b93aa436db53dec.zip |
Return bool as a bool instead of a uint64_t.
llvm-svn: 90610
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGVtable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGVtable.cpp b/clang/lib/CodeGen/CGVtable.cpp index 5cd0d329ab3..74375d9cff0 100644 --- a/clang/lib/CodeGen/CGVtable.cpp +++ b/clang/lib/CodeGen/CGVtable.cpp @@ -100,7 +100,7 @@ private: /// getIndex - Gives the index of a passed in GlobalDecl. Returns false if /// the index couldn't be found. - uint64_t getIndex(GlobalDecl GD, uint64_t &Index) const { + bool getIndex(GlobalDecl GD, uint64_t &Index) const { llvm::DenseMap<GlobalDecl, uint64_t>::const_iterator i = MethodToIndexMap.find(GD); |