forked from OSchip/llvm-project
[lld-macho][nfc] minor clean up, follow up to D98559
Differential Revision: https://reviews.llvm.org/D99210
This commit is contained in:
parent
e20911b5c0
commit
1bc33eb6a3
|
@ -284,8 +284,8 @@ void macho::DependencyTracker::write(llvm::StringRef version,
|
|||
inputNames.reserve(inputs.size());
|
||||
for (InputFile *f : inputs)
|
||||
inputNames.push_back(f->getName());
|
||||
llvm::sort(inputNames,
|
||||
[](const StringRef &a, const StringRef &b) { return a < b; });
|
||||
llvm::sort(inputNames);
|
||||
|
||||
for (const StringRef &in : inputNames)
|
||||
addDep(DepOpCode::Input, in);
|
||||
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
# REQUIRES: x86
|
||||
## FIXME: Paths on windows have both `\` and '/', as a result, they are in a different
|
||||
## order when sorted. Maybe create a separate test for that?
|
||||
# UNSUPPORTED: system-windows
|
||||
#
|
||||
# RUN: rm -rf %t
|
||||
# RUN: split-file %s %t
|
||||
|
|
Loading…
Reference in New Issue