summaryrefslogtreecommitdiff
path: root/libs/soundtouch
diff options
context:
space:
mode:
authorSampo Savolainen <v2@iki.fi>2007-01-27 22:15:16 +0000
committerSampo Savolainen <v2@iki.fi>2007-01-27 22:15:16 +0000
commit433f2cfb437e189a5114338c70967815a6d9d02a (patch)
tree5c4b1f9f6cc79206fb79042dbe43555130b357b0 /libs/soundtouch
parent17033c4448cfbf1a23ba1a1ecca1dd3ed93f3c55 (diff)
Fix PIC issue with soundtouch
git-svn-id: svn://localhost/ardour2/trunk@1394 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/soundtouch')
-rw-r--r--libs/soundtouch/cpu_detect_x86_gcc.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/soundtouch/cpu_detect_x86_gcc.cpp b/libs/soundtouch/cpu_detect_x86_gcc.cpp
index b4ccdc2834..b58b80fa06 100644
--- a/libs/soundtouch/cpu_detect_x86_gcc.cpp
+++ b/libs/soundtouch/cpu_detect_x86_gcc.cpp
@@ -80,6 +80,7 @@ uint detectCPUextensions(void)
if (_dwDisabledISA == 0xffffffff) return 0;
asm volatile(
+ "\n\tpushl %%ebx" // store ebx
"\n\txor %%esi, %%esi" // clear %%esi = result register
// check if 'cpuid' instructions is available by toggling eflags bit 21
@@ -128,6 +129,7 @@ uint detectCPUextensions(void)
"\n\tend:"
"\n\tmov %%esi, %0"
+ "\n\tpopl %%ebx"
: "=r" (res)
: /* no inputs */