From 06c224f0f1dfca6a672e8222026bc80959f2f8c2 Mon Sep 17 00:00:00 2001 From: Mikael Pettersson Date: Sat, 25 Jul 2020 19:10:55 +0200 Subject: [PATCH] sim: sim_boolean_tests: {andcbi,andcbm,andcbb}_test/0: fix copy-pastos in comments --- erlang/apps/sim/test/sim_boolean_tests.erl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/erlang/apps/sim/test/sim_boolean_tests.erl b/erlang/apps/sim/test/sim_boolean_tests.erl index 705c2b2..1fe82a3 100644 --- a/erlang/apps/sim/test/sim_boolean_tests.erl +++ b/erlang/apps/sim/test/sim_boolean_tests.erl @@ -515,8 +515,8 @@ andcb_test() -> andcbi_test() -> Prog = - [ {1, 8#100, ?INSN(?OP_MOVEI, 1, 0, 0, 8#707070)} % 1,,100/ MOVEI 1,333333 - , {1, 8#101, ?INSN(?OP_ANDCBI, 1, 0, 0, 8#070707)} % 1,,101/ ANDCBI 1,707070 + [ {1, 8#100, ?INSN(?OP_MOVEI, 1, 0, 0, 8#707070)} % 1,,100/ MOVEI 1,707070 + , {1, 8#101, ?INSN(?OP_ANDCBI, 1, 0, 0, 8#070707)} % 1,,101/ ANDCBI 1,070707 , {1, 8#102, ?INSN_INVALID} % 1,,102/ ], expect(Prog, [], {1, 8#102}, ?DEFAULT_FLAGS, @@ -525,7 +525,7 @@ andcbi_test() -> andcbm_test() -> Prog = - [ {1, 8#100, ?INSN(?OP_MOVEI, 1, 0, 0, 8#707070)} % 1,,100/ MOVEI 1,333333 + [ {1, 8#100, ?INSN(?OP_MOVEI, 1, 0, 0, 8#707070)} % 1,,100/ MOVEI 1,707070 , {1, 8#101, ?INSN(?OP_ANDCBM, 1, 0, 0, 8#200)} % 1,,101/ ANDCBM 1,200 , {1, 8#102, ?INSN_INVALID} % 1,,102/ , {1, 8#200, ?COMMA2(0, 8#070707)} % 1,,200/ 0,,070707 @@ -536,7 +536,7 @@ andcbm_test() -> andcbb_test() -> Prog = - [ {1, 8#100, ?INSN(?OP_MOVEI, 1, 0, 0, 8#707070)} % 1,,100/ MOVEI 1,333333 + [ {1, 8#100, ?INSN(?OP_MOVEI, 1, 0, 0, 8#707070)} % 1,,100/ MOVEI 1,707070 , {1, 8#101, ?INSN(?OP_ANDCBB, 1, 0, 0, 8#200)} % 1,,101/ ANDCBB 1,200 , {1, 8#102, ?INSN_INVALID} % 1,,102/ , {1, 8#200, ?COMMA2(0, 8#070707)} % 1,,200/ 0,,070707