Revision c1713132 target-arm/op.c

b/target-arm/op.c
1142 1142
    FT0d = u.d;
1143 1143
}
1144 1144

  
1145
/* Copy the most significant bit to T0 to all bits of T1.  */
1145
/* Copy the most significant bit of T0 to all bits of T1.  */
1146 1146
void OPPROTO op_signbit_T1_T0(void)
1147 1147
{
1148 1148
    T1 = (int32_t)T0 >> 31;
1149 1149
}
1150 1150

  
1151
void OPPROTO op_movl_cp_T0(void)
1152
{
1153
    helper_set_cp(env, PARAM1, T0);
1154
    FORCE_RET();
1155
}
1156

  
1157
void OPPROTO op_movl_T0_cp(void)
1158
{
1159
    T0 = helper_get_cp(env, PARAM1);
1160
    FORCE_RET();
1161
}
1162

  
1151 1163
void OPPROTO op_movl_cp15_T0(void)
1152 1164
{
1153 1165
    helper_set_cp15(env, PARAM1, T0);

Also available in: Unified diff