aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGVtable.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2009-12-04 22:45:27 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2009-12-04 22:45:27 +0000
commitcce9fde82ad99cb96c820084d636c9bfdfcff30a (patch)
treecc09369e480362c9e84a6aa5aadf9ce3d59230ca /lib/CodeGen/CGVtable.cpp
parent48eda2c5d6d2a5c95775a1a3a8a22428bb6869c6 (diff)
Return bool as a bool instead of a uint64_t.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90610 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGVtable.cpp')
-rw-r--r--lib/CodeGen/CGVtable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp
index 5cd0d329ab..74375d9cff 100644
--- a/lib/CodeGen/CGVtable.cpp
+++ b/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);