From 243fbbdcfd92b623d83b508c32f2bf416ce2b9e3 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Fri, 18 Oct 2013 13:01:33 +0000 Subject: [PATCH] Correct log message typo: ended ad -> ended at (From LLDB r192897) llvm-svn: 192968 --- llvm/lib/DebugInfo/DWARFDebugLine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/DebugInfo/DWARFDebugLine.cpp b/llvm/lib/DebugInfo/DWARFDebugLine.cpp index 192381c6f7c6..13d09dd298b9 100644 --- a/llvm/lib/DebugInfo/DWARFDebugLine.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugLine.cpp @@ -211,7 +211,7 @@ DWARFDebugLine::parsePrologue(DataExtractor debug_line_data, if (*offset_ptr != end_prologue_offset) { fprintf(stderr, "warning: parsing line table prologue at 0x%8.8x should" - " have ended at 0x%8.8x but it ended ad 0x%8.8x\n", + " have ended at 0x%8.8x but it ended at 0x%8.8x\n", prologue_offset, end_prologue_offset, *offset_ptr); return false; }