mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 00:07:57 -06:00
target/arm: Untabify iwmmxt_helper.c
Untabify the arm iwmmxt_helper.c. This affects only the iwMMXt code. We've never touched that code in years, so it's not going to get fixed up by our "change when touched" process, and a bulk change is not going to be too disruptive. This commit was produced using Emacs "untabify" (plus one by-hand removal of a space to fix a checkpatch nit); it is a whitespace-only change. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20180821165215.29069-3-peter.maydell@linaro.org
This commit is contained in:
parent
d00584b7cf
commit
67aed15551
1 changed files with 117 additions and 117 deletions
|
@ -27,7 +27,7 @@
|
||||||
/* iwMMXt macros extracted from GNU gdb. */
|
/* iwMMXt macros extracted from GNU gdb. */
|
||||||
|
|
||||||
/* Set the SIMD wCASF flags for 8, 16, 32 or 64-bit operations. */
|
/* Set the SIMD wCASF flags for 8, 16, 32 or 64-bit operations. */
|
||||||
#define SIMD8_SET( v, n, b) ((v != 0) << ((((b) + 1) * 4) + (n)))
|
#define SIMD8_SET(v, n, b) ((v != 0) << ((((b) + 1) * 4) + (n)))
|
||||||
#define SIMD16_SET(v, n, h) ((v != 0) << ((((h) + 1) * 8) + (n)))
|
#define SIMD16_SET(v, n, h) ((v != 0) << ((((h) + 1) * 8) + (n)))
|
||||||
#define SIMD32_SET(v, n, w) ((v != 0) << ((((w) + 1) * 16) + (n)))
|
#define SIMD32_SET(v, n, w) ((v != 0) << ((((w) + 1) * 16) + (n)))
|
||||||
#define SIMD64_SET(v, n) ((v != 0) << (32 + (n)))
|
#define SIMD64_SET(v, n) ((v != 0) << (32 + (n)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue