diff options
author | Ron Ofir <ron.ofir@gmail.com> | 2013-09-20 09:13:53 +0000 |
---|---|---|
committer | Ron Ofir <ron.ofir@gmail.com> | 2013-09-20 09:13:53 +0000 |
commit | 5403eaecc019525d32f2c9a5115e552b106b7f52 (patch) | |
tree | 8f7ad2d4cd35e09452db662651e65e471358d03d /lld | |
parent | 29d7be1f68f4290f44e3a0ae48583f8e5ddc742e (diff) | |
download | bcm5719-llvm-5403eaecc019525d32f2c9a5115e552b106b7f52.tar.gz bcm5719-llvm-5403eaecc019525d32f2c9a5115e552b106b7f52.zip |
[lld][WinLink] Fix typo
llvm-svn: 191079
Diffstat (limited to 'lld')
-rw-r--r-- | lld/lib/Driver/WinLinkDriver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/lib/Driver/WinLinkDriver.cpp b/lld/lib/Driver/WinLinkDriver.cpp index 645e82720c9..59147e42888 100644 --- a/lld/lib/Driver/WinLinkDriver.cpp +++ b/lld/lib/Driver/WinLinkDriver.cpp @@ -139,14 +139,14 @@ llvm::COFF::MachineTypes stringToMachineType(StringRef str) { .Default(llvm::COFF::IMAGE_FILE_MACHINE_UNKNOWN); } -// Handle /failifmatch option. +// Handle /failifmismatch option. bool handleFailIfMismatchOption(StringRef option, std::map<StringRef, StringRef> &mustMatch, raw_ostream &diagnostics) { StringRef key, value; llvm::tie(key, value) = option.split('='); if (key.empty() || value.empty()) { - diagnostics << "error: malformed /failifmatch option: " << option << "\n"; + diagnostics << "error: malformed /failifmismatch option: " << option << "\n"; return true; } auto it = mustMatch.find(key); |