Commit b624f066 authored by James Almer's avatar James Almer Committed by Luca Barbato

x86: Add ymm_reg struct

Needed to declare 32-byte long constants
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent eafb05fc
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include "config.h" #include "config.h"
typedef struct xmm_reg { uint64_t a, b; } xmm_reg; typedef struct xmm_reg { uint64_t a, b; } xmm_reg;
typedef struct ymm_reg { uint64_t a, b, c, d; } ymm_reg;
#if ARCH_X86_64 #if ARCH_X86_64
# define OPSIZE "q" # define OPSIZE "q"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment