[llvm] 1a51167 - [NFC] Fix typo in error message.

Daniel Rodríguez Troitiño via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 5 17:10:48 PDT 2022


Author: Daniel Rodríguez Troitiño
Date: 2022-10-05T17:09:13-07:00
New Revision: 1a5116794def984ae32583d8dab9f8425c0db540

URL: https://github.com/llvm/llvm-project/commit/1a5116794def984ae32583d8dab9f8425c0db540
DIFF: https://github.com/llvm/llvm-project/commit/1a5116794def984ae32583d8dab9f8425c0db540.diff

LOG: [NFC] Fix typo in error message.

Fix typo in error message. No other changes

Differential Revision: https://reviews.llvm.org/D135318

Added: 
    

Modified: 
    llvm/tools/dsymutil/dsymutil.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/dsymutil/dsymutil.cpp b/llvm/tools/dsymutil/dsymutil.cpp
index 0ebdcc1f2506f..0743fc6d3b57d 100644
--- a/llvm/tools/dsymutil/dsymutil.cpp
+++ b/llvm/tools/dsymutil/dsymutil.cpp
@@ -798,7 +798,7 @@ int dsymutil_main(int argc, char **argv) {
           break;
         FileOffset += stat->getSize();
         if (FileOffset > UINT32_MAX) {
-          WithColor::error() << "the univesral binary has a slice with an "
+          WithColor::error() << "the universal binary has a slice with an "
               "offset exceeds 4GB and will produce an invalid Mach-O file.";
           return EXIT_FAILURE;
         }


        


More information about the llvm-commits mailing list