From d56dedce6a0eb3c50898b8024a86669a1270a4bf Mon Sep 17 00:00:00 2001 From: Sourabh Singh Tomar Date: Thu, 20 Feb 2020 07:25:40 +0530 Subject: [PATCH] [DebugInfo][NFCI]: Removed an exclamation mark from error message. --- tools/llvm-dwp/llvm-dwp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llvm-dwp/llvm-dwp.cpp b/tools/llvm-dwp/llvm-dwp.cpp index f437063d192..4eff8476d61 100644 --- a/tools/llvm-dwp/llvm-dwp.cpp +++ b/tools/llvm-dwp/llvm-dwp.cpp @@ -155,7 +155,7 @@ static Expected getCUIdentifiers(StringRef Abbrev, return make_error( 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);