[PATCH] D156814: [NFC] Refactor byteswapped writes
Joshua Batista via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 1 10:46:24 PDT 2023
bob80905 added inline comments.
================
Comment at: llvm/lib/MC/DXContainerPSVInfo.cpp:18
+template <typename T>
+std::enable_if_t<std::is_integral<T>::value, void>
+swappingWrite(raw_ostream &OS, T Val) {
----------------
Am I understanding this correctly:
This function is only implemented for all integral types, and always returns void?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D156814/new/
https://reviews.llvm.org/D156814
More information about the llvm-commits
mailing list