[llvm] 84fc123 - [DebugInfo][NFCI]: Removed an exclamation mark from error message.

Sourabh Singh Tomar via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 18:19:43 PST 2020


Author: Sourabh Singh Tomar
Date: 2020-02-20T07:49:08+05:30
New Revision: 84fc1233d9a47cd7b6e681b4573d9abbc779dd2b

URL: https://github.com/llvm/llvm-project/commit/84fc1233d9a47cd7b6e681b4573d9abbc779dd2b
DIFF: https://github.com/llvm/llvm-project/commit/84fc1233d9a47cd7b6e681b4573d9abbc779dd2b.diff

LOG: [DebugInfo][NFCI]: Removed an exclamation mark from error message.

Added: 
    

Modified: 
    llvm/tools/llvm-dwp/llvm-dwp.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/llvm-dwp/llvm-dwp.cpp b/llvm/tools/llvm-dwp/llvm-dwp.cpp
index f437063d1921..4eff8476d61f 100644
--- a/llvm/tools/llvm-dwp/llvm-dwp.cpp
+++ b/llvm/tools/llvm-dwp/llvm-dwp.cpp
@@ -155,7 +155,7 @@ static Expected<CompileUnitIdentifiers> getCUIdentifiers(StringRef Abbrev,
       return make_error<DWPError>(
           std::string("unit type DW_UT_split_compile type not found in "
                       "debug_info header. Unexpected unit type 0x" +
-                      utostr(UnitType) + " found!"));
+                      utostr(UnitType) + " found"));
   }
   InfoData.getU32(&Offset); // Abbrev offset (should be zero)
   uint8_t AddrSize = InfoData.getU8(&Offset);


        


More information about the llvm-commits mailing list