mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
Fix whitespace. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171051 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a4c8a32a9f
commit
08d785bc2a
@ -148,7 +148,7 @@ unsigned FoldingSetNodeID::ComputeHash() const {
|
||||
|
||||
/// operator== - Used to compare two nodes to each other.
|
||||
///
|
||||
bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS)const{
|
||||
bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS) const {
|
||||
return *this == FoldingSetNodeIDRef(RHS.Bits.data(), RHS.Bits.size());
|
||||
}
|
||||
|
||||
@ -160,7 +160,7 @@ bool FoldingSetNodeID::operator==(FoldingSetNodeIDRef RHS) const {
|
||||
|
||||
/// Used to compare the "ordering" of two nodes as defined by the
|
||||
/// profiled bits and their ordering defined by memcmp().
|
||||
bool FoldingSetNodeID::operator<(const FoldingSetNodeID &RHS)const{
|
||||
bool FoldingSetNodeID::operator<(const FoldingSetNodeID &RHS) const {
|
||||
return *this < FoldingSetNodeIDRef(RHS.Bits.data(), RHS.Bits.size());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user