From: Bill Wendling Date: Mon, 31 Aug 2009 18:26:48 +0000 (+0000) Subject: Output a hex value, because all of the others are hex. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=049e98d641f90e90e8312d76cbf4c68908fb9d1d;p=oota-llvm.git 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 --- 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");