commit | 049e98d641f90e90e8312d76cbf4c68908fb9d1d | [log] [tgz] |
---|---|---|
author | Bill Wendling <isanbard@gmail.com> | Mon Aug 31 18:26:48 2009 +0000 |
committer | Bill Wendling <isanbard@gmail.com> | Mon Aug 31 18:26:48 2009 +0000 |
tree | 12049b5d5b6d346d105220d2be0dd4652f20c24e | |
parent | a5fd5b86f6e4c9e1d784380615126c811aba37e1 [diff] [blame] |
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 0b3affe..f6feccd 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp
@@ -826,7 +826,7 @@ std::string GLN; O << Asm->getGlobalLinkName(GV, GLN); } else { - O << "0"; + O << "0x0"; } Asm->EOL("TypeInfo");