Change (unused) prototype for stmxcsr() to match reality.

Noted by:	jhb
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2012-07-30 19:26:02 +00:00
parent 0b8ed8e069
commit a42fa0af44
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=238914
2 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ void fnstsw(caddr_t addr);
void fxsave(caddr_t addr);
void fxrstor(caddr_t addr);
void ldmxcsr(u_int csr);
void stmxcsr(u_int csr);
void stmxcsr(u_int *csr);
void xrstor(char *addr, uint64_t mask);
void xsave(char *addr, uint64_t mask);

View File

@ -114,7 +114,7 @@ void frstor(caddr_t addr);
#ifdef CPU_ENABLE_SSE
void fxsave(caddr_t addr);
void fxrstor(caddr_t addr);
void stmxcsr(u_int csr);
void stmxcsr(u_int *csr);
#endif
#endif /* __GNUCLIKE_ASM && !lint */