summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit6627c4ec82c7b2ab4f8c069e038dbb5f4a00404a (patch)
treedf802baeb5b49256b5f2fa13ee4b2300fd0b2bab /llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
parent70e2f093a49b2642c4771481dc16619d3dab204e (diff)
downloadbcm5719-llvm-6627c4ec82c7b2ab4f8c069e038dbb5f4a00404a.tar.gz
bcm5719-llvm-6627c4ec82c7b2ab4f8c069e038dbb5f4a00404a.zip
Output a hex value, because all of the others are hex.
llvm-svn: 80601
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
index 0b3affe07ee..f6feccdac8b 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
+++ b/llvm/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");
OpenPOWER on IntegriCloud