Skip to content

Commit 94eaca0

Browse files
committed
mapped bitand_s, bitor_s and bitxor_s
1 parent f077bf9 commit 94eaca0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/vm/moar/QAST/QASTOperationsMAST.nqp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1721,6 +1721,11 @@ QAST::MASTOperations.add_core_moarop_mapping('bitneg_I', 'bnot_I');
17211721
QAST::MASTOperations.add_core_moarop_mapping('bitshiftl_I', 'blshift_I');
17221722
QAST::MASTOperations.add_core_moarop_mapping('bitshiftr_I', 'brshift_I');
17231723

1724+
# string bitwise ops
1725+
QAST::MASTOperations.add_core_moarop_mapping('bitor_s', 'bitor_s');
1726+
QAST::MASTOperations.add_core_moarop_mapping('bitxor_s', 'bitxor_s');
1727+
QAST::MASTOperations.add_core_moarop_mapping('bitand_s', 'bitand_s');
1728+
17241729
# relational opcodes
17251730
QAST::MASTOperations.add_core_moarop_mapping('cmp_i', 'cmp_i');
17261731
QAST::MASTOperations.add_core_moarop_mapping('iseq_i', 'eq_i');

tools/build/MOAR_REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2013.10-94-gc31660a
1+
2013.10-95-g031e5c9

0 commit comments

Comments
 (0)