Marcus Meissner 2015-02-21 23:14:39 +00:00 committed by Git OBS Bridge
parent a86bf478a7
commit 89ca5d4b7c

View File

@ -8,14 +8,14 @@ Index: biosdevname-0.6.1/src/bios_dev_name.c
asm volatile (
- "xor %%ebx, %%ebx; cpuid"
+#ifdef x86_64
+ "pushl %%rbx\n"
+ "push %%rbx\n"
+#else
+ "push %%ebx\n"
+#endif
+ "xor %%ebx, %%ebx\n"
+ "cpuid\n"
+#ifdef x86_64
+ "popl %%rbx\n"
+ "pop %%rbx\n"
+#else
+ "pop %%ebx\n"
+#endif