mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-08-27 18:21:05 +00: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. Backports commit 67aed15551f9814712d5ac25a155919b34fbd627 from qemu
This commit is contained in:
parent
3619f707a6
commit
1b8534bf31
|
@ -30,7 +30,7 @@
|
|||
/* iwMMXt macros extracted from GNU gdb. */
|
||||
|
||||
/* 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 SIMD32_SET(v, n, w) ((v != 0) << ((((w) + 1) * 16) + (n)))
|
||||
#define SIMD64_SET(v, n) ((v != 0) << (32 + (n)))
|
||||
|
|
Loading…
Reference in a new issue