File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ static cl::TokenizerCallback getDefaultQuotingStyle() {
4545
4646static bool isPETargetName (StringRef s) {
4747 return s == " i386pe" || s == " i386pep" || s == " thumb2pe" || s == " arm64pe" ||
48- s == " arm64ecpe" || s == " arm64xpe" ;
48+ s == " arm64ecpe" || s == " arm64xpe" || s == " mipspe " ;
4949}
5050
5151static std::optional<bool > isPETarget (llvm::ArrayRef<const char *> args) {
Original file line number Diff line number Diff line change @@ -296,6 +296,7 @@ RUN: not ld.lld -m i386pep --foo 2>&1 | FileCheck -check-prefix UNKNOWN_ARG %s
296296UNKNOWN_ARG: error: unknown argument: --foo
297297
298298RUN: not ld.lld -m i386pep 2>&1 | FileCheck -check-prefix NO_INPUT_FILES %s
299+ RUN: not ld.lld -m mipspe 2>&1 | FileCheck -check-prefix NO_INPUT_FILES %s
299300NO_INPUT_FILES: error: no input files
300301
301302RUN: ld.lld -### -m i386pep foo.o 2>&1 | FileCheck -check-prefix ENABLE_AUTO_IMPORT %s
You can’t perform that action at this time.
0 commit comments