diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2005-02-28 18:09:37 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-02-28 18:09:37 +0000 |
commit | d16ad30f403a1823f8cb813415a3aa1030f5a37e (patch) | |
tree | 33e63db81c5b5f482a9b0a7febb4bbe265045777 | |
parent | 6a6b50c241b8d28216f7e57e5162d5ee2f3584e0 (diff) | |
download | gdk-pixbuf-d16ad30f403a1823f8cb813415a3aa1030f5a37e.tar.gz |
Add necessary protection
-rw-r--r-- | gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S | 7 | ||||
-rw-r--r-- | gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S | 7 | ||||
-rw-r--r-- | gdk-pixbuf/pixops/have_mmx.S | 8 | ||||
-rw-r--r-- | gdk-pixbuf/pixops/scale_line_22_33_mmx.S | 7 |
4 files changed, 20 insertions, 9 deletions
diff --git a/gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S b/gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S index af12740ec..df157b405 100644 --- a/gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S +++ b/gdk-pixbuf/pixops/composite_line_22_4a4_mmx.S @@ -1,13 +1,16 @@ .file "composite_line_22_4a4_mmx.S" .version "01.01" - .section .note.GNU-stack, "", @progbits - .previous gcc2_compiled.: .text .align 16 #if !defined(__MINGW32__) && !defined(__CYGWIN__) +/* Magic indicating no need for an executable stack */ +#if !defined __powerpc64__ && !defined __ia64__ +.section .note.GNU-stack; .previous +#endif + .globl _pixops_composite_line_22_4a4_mmx .type _pixops_composite_line_22_4a4_mmx,@function _pixops_composite_line_22_4a4_mmx: diff --git a/gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S b/gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S index b6eb48e52..2377f9d49 100644 --- a/gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S +++ b/gdk-pixbuf/pixops/composite_line_color_22_4a4_mmx.S @@ -1,13 +1,16 @@ .file "composite_line_color_22_4a4_mmx.S" .version "01.01" - .section .note.GNU-stack, "", @progbits - .previous gcc2_compiled.: .text .align 16 #if !defined(__MINGW32__) && !defined(__CYGWIN__) +/* Magic indicating no need for an executable stack */ +#if !defined __powerpc64__ && !defined __ia64__ +.section .note.GNU-stack; .previous +#endif + .globl _pixops_composite_line_color_22_4a4_mmx .type _pixops_composite_line_color_22_4a4_mmx,@function _pixops_composite_line_color_22_4a4_mmx: diff --git a/gdk-pixbuf/pixops/have_mmx.S b/gdk-pixbuf/pixops/have_mmx.S index cc93f1054..0ae7f199e 100644 --- a/gdk-pixbuf/pixops/have_mmx.S +++ b/gdk-pixbuf/pixops/have_mmx.S @@ -1,14 +1,16 @@ - .file "have_mmx.S" .version "01.01" - .section .note.GNU-stack, "", @progbits - .previous gcc2_compiled.: .text .align 16 #if !defined(__MINGW32__) && !defined(__CYGWIN__) +/* Magic indicating no need for an executable stack */ +#if !defined __powerpc64__ && !defined __ia64__ +.section .note.GNU-stack; .previous +#endif + .globl _pixops_have_mmx .type _pixops_have_mmx,@function _pixops_have_mmx: diff --git a/gdk-pixbuf/pixops/scale_line_22_33_mmx.S b/gdk-pixbuf/pixops/scale_line_22_33_mmx.S index 8ca87be58..f878ee4b2 100644 --- a/gdk-pixbuf/pixops/scale_line_22_33_mmx.S +++ b/gdk-pixbuf/pixops/scale_line_22_33_mmx.S @@ -1,13 +1,16 @@ .file "scale_line_22_33_mmx.S" .version "01.01" - .section .note.GNU-stack, "", @progbits - .previous gcc2_compiled.: .text .align 16 #if !defined(__MINGW32__) && !defined(__CYGWIN__) +/* Magic indicating no need for an executable stack */ +#if !defined __powerpc64__ && !defined __ia64__ +.section .note.GNU-stack; .previous +#endif + .globl _pixops_scale_line_22_33_mmx .type _pixops_scale_line_22_33_mmx,@function _pixops_scale_line_22_33_mmx: |