[PATCH] D84913: [libFuzzer] Enable for SystemZ

Kostya Serebryany via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 4 12:45:32 PDT 2020


kcc 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:
> 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?
I don't mind. 
hostToLe is fine too. 


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