Skip to content

Commit 2f5792a

Browse files
authored
Fix undefined ops for Mono aot legs (#117915)
1 parent 4668546 commit 2f5792a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/mono/mono/mini/mini-ops.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2010,6 +2010,9 @@ MINI_OP(OP_NEGATION, "negate", XREG, XREG, NONE)
20102010
MINI_OP(OP_ONES_COMPLEMENT, "ones_complement", XREG, XREG, NONE)
20112011
/* Select bits from src2/src3 using src1 */
20122012
MINI_OP3(OP_BSL, "bitwise_select", XREG, XREG, XREG, XREG)
2013+
#endif
2014+
2015+
#if defined(TARGET_X86) || defined(TARGET_AMD64) || defined(TARGET_WASM) || defined(TARGET_S390X)
20132016
MINI_OP(OP_VECTOR_ANDN, "vector_andnot", XREG, XREG, XREG)
20142017
MINI_OP(OP_VECTOR_IABS, "vector_integer_abs", XREG, XREG, NONE)
20152018
#endif

0 commit comments

Comments
 (0)