Fibonacci Linear Feedback Shift Register
[debian/gnuradio] / gnuradio-core / src / lib / filter / 3dnow_float_dotprod_really_simple.S
index 5aee102f029e3d1fb9d03b49ef548148bbb70bfd..6050425acaf7326432a49e15b37534ba6469b13c 100644 (file)
@@ -5,7 +5,7 @@
 # 
 # GNU Radio is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
 # any later version.
 # 
 # GNU Radio is distributed in the hope that it will be useful,
@@ -15,8 +15,8 @@
 # 
 # You should have received a copy of the GNU General Public License
 # along with GNU Radio; see the file COPYING.  If not, write to
-# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
 # 
 
 
@@ -72,14 +72,14 @@ sse_float_dotprod:
        shll    $1, %ecx                # count * 2
 
        .p2align 4
-.loop1:
+.Loop1:
        movq    (%eax), %mm0
        pfmul   (%edx), %mm0
        pfadd   %mm0, %mm4
        addl    $8, %edx
        addl    $8, %eax
        decl    %ecx
-       jne     .loop1
+       jne     .Loop1
        
        # at this point mm4 contains partial sums
 
@@ -93,3 +93,7 @@ sse_float_dotprod:
 .Lfe1:
        .size    sse_float_dotprod,.Lfe1-sse_float_dotprod
        .ident  "Hand coded x86 3DNow! assembly"
+
+#if defined(__linux__) && defined(__ELF__)
+.section .note.GNU-stack,"",%progbits
+#endif