diff options
Diffstat (limited to 'winsup/cygwin/cpuid.h')
-rw-r--r-- | winsup/cygwin/cpuid.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/cpuid.h b/winsup/cygwin/cpuid.h index 1f0cc50..998bbbf 100644 --- a/winsup/cygwin/cpuid.h +++ b/winsup/cygwin/cpuid.h @@ -6,9 +6,9 @@ cpuid (unsigned *a, unsigned *b, unsigned *c, unsigned *d, unsigned in) { asm ("cpuid" : "=a" (*a), - "=b" (*b), - "=c" (*c), - "=d" (*d) + "=b" (*b), + "=c" (*c), + "=d" (*d) : "a" (in)); } |