[llvm-commits] [llvm] r80601 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp
Bill Wendling
isanbard at gmail.com
Mon Aug 31 11:26:48 PDT 2009
Author: void
Date: Mon Aug 31 13:26:48 2009
New Revision: 80601
URL: http://llvm.org/viewvc/llvm-project?rev=80601&view=rev
Log:
Output a hex value, because all of the others are hex.
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp?rev=80601&r1=80600&r2=80601&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp Mon Aug 31 13:26:48 2009
@@ -826,7 +826,7 @@
std::string GLN;
O << Asm->getGlobalLinkName(GV, GLN);
} else {
- O << "0";
+ O << "0x0";
}
Asm->EOL("TypeInfo");
More information about the llvm-commits
mailing list