diff options
author | Sourabh Singh Tomar <SourabhSingh.Tomar@amd.com> | 2020-02-20 07:25:40 +0530 |
---|---|---|
committer | Sourabh Singh Tomar <SourabhSingh.Tomar@amd.com> | 2020-02-20 07:49:08 +0530 |
commit | 84fc1233d9a47cd7b6e681b4573d9abbc779dd2b (patch) | |
tree | 772713ab62edca31f19702390b7e8448a5a2c722 /llvm/tools/llvm-dwp/llvm-dwp.cpp | |
parent | 95a239be5b771614a3be47db55ff5ce4acd69390 (diff) | |
download | llvm-84fc1233d9a47cd7b6e681b4573d9abbc779dd2b.zip llvm-84fc1233d9a47cd7b6e681b4573d9abbc779dd2b.tar.gz llvm-84fc1233d9a47cd7b6e681b4573d9abbc779dd2b.tar.bz2 |
[DebugInfo][NFCI]: Removed an exclamation mark from error message.
Diffstat (limited to 'llvm/tools/llvm-dwp/llvm-dwp.cpp')
-rw-r--r-- | llvm/tools/llvm-dwp/llvm-dwp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-dwp/llvm-dwp.cpp b/llvm/tools/llvm-dwp/llvm-dwp.cpp index f437063..4eff847 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); |