diff options
| author | Gavin Andresen <[email protected]> | 2011-01-22 16:04:07 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-01-22 16:04:07 -0500 |
| commit | c90ea2bd6dc76d4b14f747f818ca18b788aa035e (patch) | |
| tree | 1b338ec33f3846b97fd703e9e0f096432dc25f93 /main.cpp | |
| parent | Merge branch show-version-in-help-2 of https://github.com/dooglus/bitcoin (diff) | |
| download | discoin-c90ea2bd6dc76d4b14f747f818ca18b788aa035e.tar.xz discoin-c90ea2bd6dc76d4b14f747f818ca18b788aa035e.zip | |
cpuid instruction clobbers eax/ebx/ecx/edx
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3127,7 +3127,7 @@ void CallCPUID(int in, int& aret, int& cret) "mov %%ecx, %1;" // ecx into c :"=r"(a),"=r"(c) /* output */ :"r"(in) /* input */ - :"%eax","%ecx" /* clobbered register */ + :"%eax","%ebx","%ecx","%edx" /* clobbered register */ ); aret = a; cret = c; |