mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-20 10:24:12 +00:00
Fix typo and formatting
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216809 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1532,7 +1532,7 @@ bool ExportEntry::operator==(const ExportEntry &Other) const {
|
|||||||
if (Stack.size() != Other.Stack.size())
|
if (Stack.size() != Other.Stack.size())
|
||||||
return false;
|
return false;
|
||||||
// Not equal if different cumulative strings.
|
// Not equal if different cumulative strings.
|
||||||
if (!CumulativeString.str().equals(CumulativeString.str()))
|
if (!CumulativeString.str().equals(Other.CumulativeString.str()))
|
||||||
return false;
|
return false;
|
||||||
// Equal if all nodes in both stacks match.
|
// Equal if all nodes in both stacks match.
|
||||||
for (unsigned i=0; i < Stack.size(); ++i) {
|
for (unsigned i=0; i < Stack.size(); ++i) {
|
||||||
|
Reference in New Issue
Block a user