[PATCH] D83423: [MC, NVPTX] Add MCAsmPrinter support for unsigned-only data directives.
Hal Finkel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 13 18:27:39 PDT 2020
hfinkel added inline comments.
================
Comment at: llvm/lib/MC/MCExpr.cpp:69
+ else if (MAI && !MAI->supportsSignedData())
+ OS << static_cast<uint64_t>(Value);
else
----------------
Will uint64_t always be correct here? Shouldn't this depend on SizeInBytes (like the hex printing does)?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83423/new/
https://reviews.llvm.org/D83423
More information about the llvm-commits
mailing list