aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DwarfException.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-08-31 18:26:48 +0000
committerBill Wendling <isanbard@gmail.com>2009-08-31 18:26:48 +0000
commit049e98d641f90e90e8312d76cbf4c68908fb9d1d (patch)
tree12049b5d5b6d346d105220d2be0dd4652f20c24e /lib/CodeGen/AsmPrinter/DwarfException.cpp
parenta5fd5b86f6e4c9e1d784380615126c811aba37e1 (diff)
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
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfException.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp
index 0b3affe07e..f6feccdac8 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");