Return bool as a bool instead of a uint64_t.

llvm-svn: 90610
diff --git a/clang/lib/CodeGen/CGVtable.cpp b/clang/lib/CodeGen/CGVtable.cpp
index 5cd0d32..74375d9 100644
--- a/clang/lib/CodeGen/CGVtable.cpp
+++ b/clang/lib/CodeGen/CGVtable.cpp
@@ -100,7 +100,7 @@
 
     /// 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);