diff options
author | Richard Henderson <rth@twiddle.net> | 2011-11-01 15:06:43 -0700 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2011-11-02 02:12:33 +0400 |
commit | 0756e71c3f4327f4d2ad3c6099cdafc23de14fcf (patch) | |
tree | bd79acacd817f8e4fec2e3235b66d12b46640200 /tcg | |
parent | 2f98c9db0b657e198ab106139654bd408f59636c (diff) | |
download | qemu-0756e71c3f4327f4d2ad3c6099cdafc23de14fcf.tar.gz qemu-0756e71c3f4327f4d2ad3c6099cdafc23de14fcf.tar.bz2 qemu-0756e71c3f4327f4d2ad3c6099cdafc23de14fcf.zip |
tcg: Fix whitespace in tcg-op.h.
Removing the only tabs in the file.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg-op.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tcg/tcg-op.h b/tcg/tcg-op.h index 8637fe8a01..82e04e7f30 100644 --- a/tcg/tcg-op.h +++ b/tcg/tcg-op.h @@ -2042,8 +2042,8 @@ static inline void tcg_gen_rotri_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2) } static inline void tcg_gen_deposit_i32(TCGv_i32 ret, TCGv_i32 arg1, - TCGv_i32 arg2, unsigned int ofs, - unsigned int len) + TCGv_i32 arg2, unsigned int ofs, + unsigned int len) { uint32_t mask; TCGv_i32 t1; @@ -2073,8 +2073,8 @@ static inline void tcg_gen_deposit_i32(TCGv_i32 ret, TCGv_i32 arg1, } static inline void tcg_gen_deposit_i64(TCGv_i64 ret, TCGv_i64 arg1, - TCGv_i64 arg2, unsigned int ofs, - unsigned int len) + TCGv_i64 arg2, unsigned int ofs, + unsigned int len) { uint64_t mask; TCGv_i64 t1; |