diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-01-25 16:45:46 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-01-25 16:45:46 +0000 |
commit | fd64377225a6a140bddb3f997d52a036486f9360 (patch) | |
tree | 16ca953b5aaa1fbb57f4a92e41bb8fc6675c869c | |
parent | b988f9cde9bce0848d081b5cd1f6a48b86ec8108 (diff) |
Expect the impossible
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94425 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/CIndex/CIndex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/CIndex/CIndex.cpp b/tools/CIndex/CIndex.cpp index c9c6c25d58..eb40b7fe99 100644 --- a/tools/CIndex/CIndex.cpp +++ b/tools/CIndex/CIndex.cpp @@ -362,7 +362,7 @@ bool CursorVisitor::Visit(CXCursor Cursor, bool CheckedRegionOfInterest) { return VisitChildren(Cursor); } - llvm_unreachable("Silly GCC, we can't get here"); + return false; } /// \brief Visit the children of the given cursor. |