diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-03-28 01:30:18 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-03-28 01:30:18 +0000 |
commit | aaa80ebd10c62a903537d386b0d3738b0595491f (patch) | |
tree | aa8182f3d99a8782b396b4f4b29c9b9de2c4bcb5 /lib/CodeGen | |
parent | b026e70462d3e59f4a7b8029669d804d3e0387ed (diff) |
More bulletproofing of DebugInfoDesc verify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27203 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/MachineDebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineDebugInfo.cpp b/lib/CodeGen/MachineDebugInfo.cpp index eb85f27a47..9876e652a8 100644 --- a/lib/CodeGen/MachineDebugInfo.cpp +++ b/lib/CodeGen/MachineDebugInfo.cpp @@ -1323,7 +1323,7 @@ GlobalVariable *DISerializer::Serialize(DebugInfoDesc *DD) { /// Verify - Return true if the GlobalVariable appears to be a valid /// serialization of a DebugInfoDesc. bool DIVerifier::Verify(Value *V) { - return Verify(getGlobalVariable(V)); + return !V || Verify(getGlobalVariable(V)); } bool DIVerifier::Verify(GlobalVariable *GV) { // NULLs are valid. |