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 ( asm volatile (
- "xor %%ebx, %%ebx; cpuid" - "xor %%ebx, %%ebx; cpuid"
+#ifdef x86_64 +#ifdef x86_64
+ "pushl %%rbx\n" + "push %%rbx\n"
+#else +#else
+ "push %%ebx\n" + "push %%ebx\n"
+#endif +#endif
+ "xor %%ebx, %%ebx\n" + "xor %%ebx, %%ebx\n"
+ "cpuid\n" + "cpuid\n"
+#ifdef x86_64 +#ifdef x86_64
+ "popl %%rbx\n" + "pop %%rbx\n"
+#else +#else
+ "pop %%ebx\n" + "pop %%ebx\n"
+#endif +#endif