We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 89010a9 + fe09aae commit 0d77734Copy full SHA for 0d77734
src/libhelix-aac/assembly.h
@@ -558,14 +558,14 @@ static __inline int CLZ(int x)
558
typedef union _U64 {
559
Word64 w64;
560
struct {
561
-#ifdef __XTENSA__
562
- unsigned int lo32;
563
- signed int hi32;
564
-#else
+#if defined(__POWERPC__) || defined(__powerpc__)
565
/* PowerPC = big endian */
566
signed int hi32;
567
unsigned int lo32;
568
-#endif
+#else
+ unsigned int lo32;
+ signed int hi32;
+#endif
569
} r;
570
} U64;
571
0 commit comments