[PATCH] D84913: [libFuzzer] Enable for SystemZ

Ilya Leoshkevich via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 4 12:39:14 PDT 2020


iii marked 2 inline comments as done.
iii added inline comments.


================
Comment at: compiler-rt/lib/fuzzer/FuzzerUtil.h:110
+#if __BYTE_ORDER == __LITTLE_ENDIAN
+template <typename T> T htole(T X) { return X; }
+#else
----------------
iii wrote:
> kcc wrote:
> > Maybe name it HostToLE? 
> Ok - clang-tidy might not like it, but let's see.
Yeah: invalid case style for function 'HostToLE'. Suggested name is 'hostToLe'.
Would it be ok to commit with this warning?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D84913/new/

https://reviews.llvm.org/D84913



More information about the llvm-commits mailing list