mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 03:24:09 +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())
|
||||
return false;
|
||||
// Not equal if different cumulative strings.
|
||||
if (!CumulativeString.str().equals(CumulativeString.str()))
|
||||
if (!CumulativeString.str().equals(Other.CumulativeString.str()))
|
||||
return false;
|
||||
// Equal if all nodes in both stacks match.
|
||||
for (unsigned i=0; i < Stack.size(); ++i) {
|
||||
|
Reference in New Issue
Block a user