summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/Interp/Pointer.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/AST/Interp/Pointer.h')
-rw-r--r--clang/lib/AST/Interp/Pointer.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/clang/lib/AST/Interp/Pointer.h b/clang/lib/AST/Interp/Pointer.h
index fcd00aac62f9..b4475577b746 100644
--- a/clang/lib/AST/Interp/Pointer.h
+++ b/clang/lib/AST/Interp/Pointer.h
@@ -241,13 +241,10 @@ public:
/// Checks if the pointer is null.
bool isZero() const {
- if (Offset != 0)
- return false;
-
if (isBlockPointer())
return asBlockPointer().Pointee == nullptr;
assert(isIntegralPointer());
- return asIntPointer().Value == 0;
+ return asIntPointer().Value == 0 && Offset == 0;
}
/// Checks if the pointer is live.
bool isLive() const {