[PATCH] D67487: [CodeEmitter] Support instruction widths > 64 bits
Benjamin Kramer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 13 03:51:39 PDT 2019
bkramer accepted this revision.
bkramer added a comment.
This revision is now accepted and ready to land.
I think this is fine. Features like this might bitrot quickly but that's on you ;)
================
Comment at: llvm/utils/TableGen/CodeEmitterGen.cpp:309
+ for (unsigned I = 0; I < Bits.getNumWords(); ++I)
+ OS << ((I > 0) ? ", " : "") << "UINT64_C(" << utostr(Bits.getRawData()[I])
+ << ")";
----------------
utostr() isn't needed when printing to a raw_ostream
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67487/new/
https://reviews.llvm.org/D67487
More information about the llvm-commits
mailing list