Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
6dc68de2
by Raymond Toy at 2021-05-07T08:00:04-07:00
-
545c960d
by Raymond Toy at 2021-05-07T15:17:34+00:00
1 changed file:
Changes:
| ... | ... | @@ -6,6 +6,8 @@ |
| 6 | 6 |
*/
|
| 7 | 7 |
#ifndef __X86_ARCH_H
|
| 8 | 8 |
|
| 9 |
+#include <stdint.h>
|
|
| 10 |
+ |
|
| 9 | 11 |
extern int arch_support_sse2(void);
|
| 10 | 12 |
extern boolean os_support_sse2(void);
|
| 11 | 13 |
|
| ... | ... | @@ -25,6 +27,6 @@ extern boolean os_support_sse2(void); |
| 25 | 27 |
* Just use the SSE size for both x87 and sse2 since the SSE size is
|
| 26 | 28 |
* enough for either. Make sure it's on a 16-byte boundary.
|
| 27 | 29 |
*/
|
| 28 |
-#define FPU_STATE(name) u_int8_t name[SSE_STATE_SIZE] __attribute__((aligned(16)))
|
|
| 30 |
+#define FPU_STATE(name) uint8_t name[SSE_STATE_SIZE] __attribute__((aligned(16)))
|
|
| 29 | 31 |
|
| 30 | 32 |
#endif
|