Marcus Meissner 2015-02-21 23:17:28 +00:00 committed by Git OBS Bridge
parent dd6c94e3e4
commit bfd58fff59

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__
+ "push %%rbx\n"
+ "pushl %%rbx\n"
+#else
+ "push %%ebx\n"
+#endif
+ "xor %%ebx, %%ebx\n"
+ "cpuid\n"
+#ifdef __x86_64__
+ "pop %%rbx\n"
+ "popl %%rbx\n"
+#else
+ "pop %%ebx\n"
+#endif