Home | History | Annotate | Download | only in gcc

Lines Matching defs:jump_insn

1886 /* Verify that the loader copes with a jump_insn to a label_ref.  */
1893 rtx_insn *jump_insn = get_insn_by_uid (1);
1894 ASSERT_EQ (JUMP_INSN, GET_CODE (jump_insn));
1902 /* Verify the jump_insn. */
1903 ASSERT_EQ (4, BLOCK_FOR_INSN (jump_insn)->index);
1904 ASSERT_EQ (SET, GET_CODE (PATTERN (jump_insn)));
1906 ASSERT_RTX_PTR_EQ (pc_rtx, SET_DEST (PATTERN (jump_insn)));
1907 rtx label_ref = SET_SRC (PATTERN (jump_insn));
1910 ASSERT_EQ (code_label, JUMP_LABEL (jump_insn));
1956 /* Verify that the loader copes with a jump_insn to a label_ref
1964 rtx_insn *jump_insn = get_insn_by_uid (1);
1965 ASSERT_EQ (JUMP_INSN, GET_CODE (jump_insn));
1966 ASSERT_RTX_PTR_EQ (ret_rtx, JUMP_LABEL (jump_insn));
1969 /* Verify that the loader copes with a jump_insn to a label_ref
1978 rtx_insn *jump_insn = get_insn_by_uid (1);
1979 ASSERT_EQ (JUMP_INSN, GET_CODE (jump_insn));
1980 ASSERT_RTX_PTR_EQ (simple_return_rtx, JUMP_LABEL (jump_insn));