From 4e227702197ece69f9545d3c4903c8268a438459 Mon Sep 17 00:00:00 2001 From: Nilanjana Basu Date: Wed, 17 Jul 2019 23:43:58 +0000 Subject: Changes to display code view debug info type records in hex format llvm-svn: 366390 --- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp') diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp index bd0ace9..932959c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp @@ -103,7 +103,7 @@ public: void EmitBytes(StringRef Data) { OS->EmitBytes(Data); } void EmitIntValue(uint64_t Value, unsigned Size) { - OS->EmitIntValue(Value, Size); + OS->EmitIntValueInHex(Value, Size); } void EmitBinaryData(StringRef Data) { OS->EmitBinaryData(Data); } -- cgit v1.1