diff options
| author | Sean Callanan <scallanan@apple.com> | 2014-12-06 02:31:49 +0000 |
|---|---|---|
| committer | Sean Callanan <scallanan@apple.com> | 2014-12-06 02:31:49 +0000 |
| commit | 957a872cb1ff297dcef7bbb477f9150ed925610c (patch) | |
| tree | e9eb6049f9109ee521214d2b1a0d71c2935fd1f3 | |
| parent | 35303fd739705b9167fb2596175e5cb397921566 (diff) | |
| download | bcm5719-llvm-957a872cb1ff297dcef7bbb477f9150ed925610c.tar.gz bcm5719-llvm-957a872cb1ff297dcef7bbb477f9150ed925610c.zip | |
Fixed an unfortunate reversed conditional that
resulted in hard-to-track-down crashes. Sigh.
llvm-svn: 223575
| -rw-r--r-- | lldb/source/Symbol/ClangExternalASTSourceCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp b/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp index 092e8de08a6..79cc9a91355 100644 --- a/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp +++ b/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp @@ -30,7 +30,7 @@ ClangExternalASTSourceCommon::Lookup(clang::ExternalASTSource *source) ASTSourceMap::iterator iter = source_map.find(source); - if (iter == source_map.end()) + if (iter != source_map.end()) { return iter->second; } |

