]> git.proxmox.com Git - rustc.git/blobdiff - src/compiler-rt/lib/msan/msan_report.cc
New upstream version 1.12.0+dfsg1
[rustc.git] / src / compiler-rt / lib / msan / msan_report.cc
index ddb8070282a980ae940014d7047dacd20815a2ab..9a35c9c13de5c245e0b9e19c789f7f7ff0954701 100644 (file)
@@ -221,11 +221,7 @@ void DescribeMemoryRange(const void *x, uptr size) {
     } else {
       unsigned char v = *(unsigned char *)s;
       if (v) last_quad_poisoned = true;
-#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
-      Printf("%x%x", v & 0xf, v >> 4);
-#else
       Printf("%x%x", v >> 4, v & 0xf);
-#endif
     }
     // Group end.
     if (pos % 4 == 3 && with_origins) {