diff options
| author | Soren Jorvang <soren.jorvang@gmail.com> | 2011-02-02 18:21:20 +0000 |
|---|---|---|
| committer | Soren Jorvang <soren.jorvang@gmail.com> | 2011-02-02 18:21:20 +0000 |
| commit | 9c21d003af3dc9654a9b302c3085253d55cab20e (patch) | |
| tree | dda706ba5f40f789c0afc3c7cbf8554dcae5ce1a /Source/Core/Common/Src/CPUDetect.cpp | |
| parent | 9a975705bff532d3a81651145a08e056b0410f8d (diff) | |
Remove the global namespace a bit and remove some dead code.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7043 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/CPUDetect.cpp')
| -rw-r--r-- | Source/Core/Common/Src/CPUDetect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/CPUDetect.cpp b/Source/Core/Common/Src/CPUDetect.cpp index 53bcbae5dc..d21bc9e0cd 100644 --- a/Source/Core/Common/Src/CPUDetect.cpp +++ b/Source/Core/Common/Src/CPUDetect.cpp @@ -60,7 +60,7 @@ static inline void do_cpuid(unsigned int *eax, unsigned int *ebx, #endif } -void __cpuid(int info[4], int x) +static void __cpuid(int info[4], int x) { unsigned int eax = x, ebx = 0, ecx = 0, edx = 0; do_cpuid(&eax, &ebx, &ecx, &edx); |
