mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
Fix a typo, and all of its copies
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77489 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e657ec6701
commit
26ef510d5d
@ -79,7 +79,7 @@ namespace llvm {
|
|||||||
Val.setInt(1);
|
Val.setInt(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// isNull - Return true if the pointer help in the union is null,
|
/// isNull - Return true if the pointer held in the union is null,
|
||||||
/// regardless of which type it is.
|
/// regardless of which type it is.
|
||||||
bool isNull() const { return Val.getPointer() == 0; }
|
bool isNull() const { return Val.getPointer() == 0; }
|
||||||
operator bool() const { return !isNull(); }
|
operator bool() const { return !isNull(); }
|
||||||
@ -176,7 +176,7 @@ namespace llvm {
|
|||||||
Val = V;
|
Val = V;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// isNull - Return true if the pointer help in the union is null,
|
/// isNull - Return true if the pointer held in the union is null,
|
||||||
/// regardless of which type it is.
|
/// regardless of which type it is.
|
||||||
bool isNull() const { return Val.isNull(); }
|
bool isNull() const { return Val.isNull(); }
|
||||||
operator bool() const { return !isNull(); }
|
operator bool() const { return !isNull(); }
|
||||||
@ -281,7 +281,7 @@ namespace llvm {
|
|||||||
Val = InnerUnion2(V);
|
Val = InnerUnion2(V);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// isNull - Return true if the pointer help in the union is null,
|
/// isNull - Return true if the pointer held in the union is null,
|
||||||
/// regardless of which type it is.
|
/// regardless of which type it is.
|
||||||
bool isNull() const { return Val.isNull(); }
|
bool isNull() const { return Val.isNull(); }
|
||||||
operator bool() const { return !isNull(); }
|
operator bool() const { return !isNull(); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user