diff options
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/boot/Makefile.version | 2 | ||||
-rw-r--r-- | usr/src/boot/sys/i386/include/cpufunc.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/boot/Makefile.version b/usr/src/boot/Makefile.version index 42c1ccc40e..67ca14987c 100644 --- a/usr/src/boot/Makefile.version +++ b/usr/src/boot/Makefile.version @@ -34,4 +34,4 @@ LOADER_VERSION = 1.1 # Use date like formatting here, YYYY.MM.DD.XX, without leading zeroes. # The version is processed from left to right, the version number can only # be increased. -BOOT_VERSION = $(LOADER_VERSION)-2022.07.23.1 +BOOT_VERSION = $(LOADER_VERSION)-2022.09.04.1 diff --git a/usr/src/boot/sys/i386/include/cpufunc.h b/usr/src/boot/sys/i386/include/cpufunc.h index 501d229035..66f28858f1 100644 --- a/usr/src/boot/sys/i386/include/cpufunc.h +++ b/usr/src/boot/sys/i386/include/cpufunc.h @@ -113,7 +113,7 @@ do_cpuid(u_int ax, u_int *p) "cpuid \n\t" "movl %%ebx, %1 \n\t" "popl %%ebx \n\t" - : "=a" (p[0]), "=m" (p[1]), "=c" (p[2]), "=d" (p[3]) + : "=a" (p[0]), "=DS" (p[1]), "=c" (p[2]), "=d" (p[3]) : "0" (ax)); } |