mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-22 20:05:38 +00:00
Fix whitespace. No functionality change.
llvm-svn: 171051
This commit is contained in:
parent
3017e5481d
commit
654d7933b1
@ -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…
x
Reference in New Issue
Block a user