diff options
author | Andrzej Zaborowski <balrog@zabor.org> | 2010-03-02 22:26:04 +0100 |
---|---|---|
committer | Andrzej Zaborowski <balrog@zabor.org> | 2010-03-02 22:26:04 +0100 |
commit | b525f0a94faa2776267bb46956170667f0306859 (patch) | |
tree | 7a09223d939b7fc8f551da1a6e1a368c001571ee /tcg/arm | |
parent | e0404769facf1a009b94a53c076adb02bfda48ad (diff) |
Add a missing break
Diffstat (limited to 'tcg/arm')
-rw-r--r-- | tcg/arm/tcg-target.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tcg/arm/tcg-target.c b/tcg/arm/tcg-target.c index d743dbcb72..d1e02dad4b 100644 --- a/tcg/arm/tcg-target.c +++ b/tcg/arm/tcg-target.c @@ -1549,6 +1549,7 @@ static inline void tcg_out_op(TCGContext *s, int opc, ARITH_MOV, args[0], 0, 1); tcg_out_dat_imm(s, tcg_cond_to_arm_cond[tcg_invert_cond(args[5])], ARITH_MOV, args[0], 0, 0); + break; case INDEX_op_qemu_ld8u: tcg_out_qemu_ld(s, COND_AL, args, 0); |