summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
diff options
context:
space:
mode:
authorNilanjana Basu <nilanjana.basu87@gmail.com>2019-07-17 23:43:58 +0000
committerNilanjana Basu <nilanjana.basu87@gmail.com>2019-07-17 23:43:58 +0000
commit4e227702197ece69f9545d3c4903c8268a438459 (patch)
treec6c44f58bb1396300cdf904e7ceef8461dc236f5 /llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
parent749f556bbd146f1bf066a994e7a9a9fdc65ab6a1 (diff)
downloadbcm5719-llvm-4e227702197ece69f9545d3c4903c8268a438459.tar.gz
bcm5719-llvm-4e227702197ece69f9545d3c4903c8268a438459.zip
Changes to display code view debug info type records in hex format
llvm-svn: 366390
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
index bd0ace9e1bb..932959c311f 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); }
OpenPOWER on IntegriCloud