Skip to content

Commit

Permalink
Fix build error in mini-ppc.h (#73845)
Browse files Browse the repository at this point in the history
Looks like this got inadvertently broken by #65723
  • Loading branch information
akoeplinger committed Aug 12, 2022
1 parent f4e8005 commit 77d9533
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/mono/mono/mini/mini-ppc.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,7 @@ typedef struct MonoCompileArch {
#else
#define MONO_ARCH_CALLEE_FREGS (0xff << ppc_f1)
#endif
#define MONO_ARCH_CALLEE_SAVED_FREGS (~(MONO_ARCH_CALLEE_FRE
GS | 1))
#define MONO_ARCH_CALLEE_SAVED_FREGS (~(MONO_ARCH_CALLEE_FREGS | 1))

#ifdef TARGET_POWERPC64
#define MONO_ARCH_INST_FIXED_REG(desc) (((desc) == 'a')? ppc_r3: \
Expand Down

0 comments on commit 77d9533

Please sign in to comment.