[PATCH] D66458: [COFF] Fix section name for constants larger than 64 bits on Windows
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 21 08:14:10 PDT 2019
MaskRay added inline comments.
================
Comment at: llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp:1602
+ std::string HexString = AI.toString(16, /*Signed=*/false);
+ std::transform(HexString.begin(), HexString.end(), HexString.begin(), tolower);
unsigned Size = HexString.size();
----------------
llvm::transform(HexString, ...)
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66458/new/
https://reviews.llvm.org/D66458
More information about the llvm-commits
mailing list