[PATCH] D78663: [builtins] Add 32-bit shift builtins

Luís Marques via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 29 07:31:33 PDT 2020


luismarques added inline comments.


================
Comment at: compiler-rt/lib/builtins/int_types.h:46-65
+#if _YUGA_LITTLE_ENDIAN
+    hu_int low;
+    hi_int high;
+#else
+    hi_int high;
+    hu_int low;
+#endif // _YUGA_LITTLE_ENDIAN
----------------
Are these macro definitions processor-specific? If so, can't we use something more general?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D78663





More information about the llvm-commits mailing list