From 049e98d641f90e90e8312d76cbf4c68908fb9d1d Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 31 Aug 2009 18:26:48 +0000 Subject: [PATCH] Output a hex value, because all of the others are hex. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80601 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/DwarfException.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index 0b3affe07ee..f6feccdac8b 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -826,7 +826,7 @@ void DwarfException::EmitExceptionTable() { std::string GLN; O << Asm->getGlobalLinkName(GV, GLN); } else { - O << "0"; + O << "0x0"; } Asm->EOL("TypeInfo"); -- 2.34.1