mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NTOS] Remove useless functions
This commit is contained in:
parent
620f9ee71a
commit
e9a129c1e2
1 changed files with 0 additions and 10 deletions
|
@ -81,16 +81,6 @@ static __inline__ __attribute__((always_inline)) void __sldt(void *Destination)
|
|||
__asm__ __volatile__("sldt %0" : : "m"(*(short*)Destination) : "memory");
|
||||
}
|
||||
|
||||
static __inline__ __attribute__((always_inline)) void __ldmxcsr(unsigned long *Source)
|
||||
{
|
||||
__asm__ __volatile__("ldmxcsr %0" : : "m"(*Source));
|
||||
}
|
||||
|
||||
static __inline__ __attribute__((always_inline)) void __stmxcsr(unsigned long *Destination)
|
||||
{
|
||||
__asm__ __volatile__("stmxcsr %0" : : "m"(*Destination) : "memory");
|
||||
}
|
||||
|
||||
static __inline__ __attribute__((always_inline)) void __ltr(unsigned short Source)
|
||||
{
|
||||
__asm__ __volatile__("ltr %0" : : "rm"(Source));
|
||||
|
|
Loading…
Reference in a new issue