Use consistent conditionals for big endian detection (not all PowerPC hosts are big-endian!)

This commit is contained in:
lif 2020-04-21 18:58:58 -07:00 committed by Vicki Pfau
parent 05d4a6ca17
commit 0a06af1aa6
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ struct ARMCore;
union PSR {
struct {
#if defined(__POWERPC__) || defined(__PPC__)
#if defined(__BIG_ENDIAN__)
unsigned n : 1;
unsigned z : 1;
unsigned c : 1;