Commit a95db7ba authored by Raymond Toy's avatar Raymond Toy
Browse files

Update comments

parent 4b80a6e5
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -17,15 +17,13 @@ extern boolean os_support_sse2(void);
#define FPU_STATE_SIZE 27

/* 
 * Need 512 byte area, aligned on a 16-byte boundary.  So allocate
 * 512+16 bytes of space and let the routine adjust the appropriate
 * alignment.
 * Need 512 byte area, aligned on a 16-byte boundary.
 */
#define SSE_STATE_SIZE 512

/*
 * Just use the SSE size for both x87 and sse2 since the SSE size is
 * enough for either.
 * enough for either.  Make sure it's on a 16-byte boundary.
 */
#define FPU_STATE(name)    u_int8_t name[SSE_STATE_SIZE] __attribute__((aligned(16)))