mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
8 lines
156 B
C
8 lines
156 B
C
// https://issues.dlang.org/show_bug.cgi?id=23616
|
|
|
|
#if __has_extension(gnu_asm)
|
|
void _hreset(int __eax)
|
|
{
|
|
__asm__ ("hreset $0" :: "a"(__eax));
|
|
}
|
|
#endif
|