commit | 6930f4f9451c2f852477bdbcb640f0562b661753 | [log] [tgz] |
---|---|---|
author | Devang Patel <dpatel@apple.com> | Wed Jul 22 18:56:16 2009 +0000 |
committer | Devang Patel <dpatel@apple.com> | Wed Jul 22 18:56:16 2009 +0000 |
tree | 8107293130a2fc91295cf158f240b6383e990bfa | |
parent | d7de7bc2971c7aba0bcd4537cfd1b9c2fff44036 [diff] [blame] |
Fix thinko. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76769 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index aa012ef..f1ad08a 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp
@@ -213,7 +213,7 @@ if (isNull()) return; - assert (D.isNull() && "Can not replace with null"); + assert (!D.isNull() && "Can not replace with null"); getGV()->replaceAllUsesWith(D.getGV()); getGV()->eraseFromParent(); }