Ticket #33450: patch-src-xml.cpp.diff
File patch-src-xml.cpp.diff, 519 bytes (added by mklein-de (Michael Klein), 13 years ago) |
---|
-
src/xml.cpp
old new 440 440 441 441 void xml::cpuid(uint32_t op, unsigned long *eax, unsigned long *ebx, 442 442 unsigned long *ecx, unsigned long *edx) { 443 #if HAVE_ASM_CPUID 443 444 #if defined(__i386__) && defined(__PIC__) 444 445 __asm__ __volatile__("pushl %%ebx \n\t" /* save %ebx */ 445 446 "cpuid \n\t" … … 455 456 : "cc"); 456 457 457 458 #endif 459 #endif 458 460 } 459 461 460 462