diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-08-31 18:26:48 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-08-31 18:26:48 +0000 |
commit | 4cfaf41d499ce05b11ecb62746c3e86b04440f62 (patch) | |
tree | 12049b5d5b6d346d105220d2be0dd4652f20c24e /lib | |
parent | 7829e5a6558bb97589d47d61da3142f7ebbdaeac (diff) | |
download | external_llvm-4cfaf41d499ce05b11ecb62746c3e86b04440f62.zip external_llvm-4cfaf41d499ce05b11ecb62746c3e86b04440f62.tar.gz external_llvm-4cfaf41d499ce05b11ecb62746c3e86b04440f62.tar.bz2 |
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')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index 0b3affe..f6feccd 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"); |