diff options
author | Richard Henderson | 2010-03-19 21:02:02 +0100 |
---|---|---|
committer | Aurelien Jarno | 2010-03-26 21:42:46 +0100 |
commit | 8d625cf1d159b313daefec13abc637c3e8862bd5 (patch) | |
tree | 039bef06552f0da0c737109f85c9d0e2a26d7f79 /tcg/README | |
parent | tcg: Use not_i32 to implement not_i64. (diff) | |
download | qemu-8d625cf1d159b313daefec13abc637c3e8862bd5.tar.gz qemu-8d625cf1d159b313daefec13abc637c3e8862bd5.tar.xz qemu-8d625cf1d159b313daefec13abc637c3e8862bd5.zip |
tcg: Allow target-specific implementation of EQV.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/README')
-rw-r--r-- | tcg/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/README b/tcg/README index 281c1143f3..fe8c3d5d8f 100644 --- a/tcg/README +++ b/tcg/README @@ -213,7 +213,7 @@ t0=t1&~t2 * eqv_i32/i64 t0, t1, t2 -t0=~(t1^t2) +t0=~(t1^t2), or equivalently, t0=t1^~t2 * nand_i32/i64 t0, t1, t2 |