Skip to content

Commit

Permalink
[PATCH] x86-64: fix arithmetic in comment
Browse files Browse the repository at this point in the history
The xmm space on x86_64 is 256 bytes.

Signed-off-by: Avi Kivity <avi@qumranet.com>
Signed-off-by: Andi Kleen <ak@suse.de>
  • Loading branch information
Avi Kivity authored and Andi Kleen committed May 2, 2007
1 parent 5d02d7a commit bbf30a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-x86_64/processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ struct i387_fxsave_struct {
u32 mxcsr;
u32 mxcsr_mask;
u32 st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 128 bytes */
u32 xmm_space[64]; /* 16*16 bytes for each XMM-reg = 256 bytes */
u32 padding[24];
} __attribute__ ((aligned (16)));

Expand Down

0 comments on commit bbf30a1

Please sign in to comment.