1. 31 May, 2015 4 commits
  2. 28 May, 2015 1 commit
    • Timothy Gu's avatar
      x86inc: Clear __SECT__ · dd4d709b
      Timothy Gu authored
      Silences warning(s) like:
      
          libavcodec/x86/fft.asm:93: warning: section flags ignored on
          section redeclaration
      
      The cause of this warning is that because `struc` and `endstruc`
      attempts to revert to the previous section state [1].
      
      The section state is stored in the macro __SECT__, defined by
      x86inc.asm to be `.note.GNU-stack ...`, through the `SECTION`
      directive [2].
      
      Thus, the `.note.GNU-stack` section is defined twice
      (once in x86inc.asm, once during `endstruc`), causing the warning.
      
      That is the first part of the commit: using the primitive `[section]` format
      for .note.GNU-stack etc., which does not update `__SECT__` [2].
      
      That fixes only half of the problem. Even without any `SECTION` directives,
      `__SECT__` is predefined as `.text`, which conflicting with the later
      `SECTION_TEXT` (which expands to `.text align=16`).
      
      [1]: http://www.nasm.us/doc/nasmdoc6.html#section-6.4
      [2]: http://www.nasm.us/doc/nasmdoc6.html#section-6.3Signed-off-by: 's avatarLuca Barbato <lu_zero@gentoo.org>
      dd4d709b
  3. 27 May, 2015 2 commits
  4. 08 Apr, 2015 2 commits
  5. 20 Mar, 2015 1 commit
  6. 04 Mar, 2015 1 commit
  7. 25 Feb, 2015 1 commit
  8. 17 Feb, 2015 1 commit
  9. 03 Feb, 2015 1 commit
  10. 02 Feb, 2015 1 commit
  11. 01 Feb, 2015 1 commit
  12. 31 Dec, 2014 1 commit
  13. 05 Dec, 2014 1 commit
  14. 26 Nov, 2014 1 commit
  15. 28 Sep, 2014 1 commit
  16. 27 Sep, 2014 1 commit
  17. 09 Sep, 2014 3 commits
  18. 05 Sep, 2014 1 commit
  19. 04 Sep, 2014 2 commits
  20. 23 Aug, 2014 2 commits
  21. 09 Aug, 2014 1 commit
  22. 05 Aug, 2014 1 commit
  23. 03 Aug, 2014 1 commit
  24. 26 Jul, 2014 1 commit
  25. 01 Jul, 2014 1 commit
  26. 15 Jun, 2014 1 commit
  27. 08 Jun, 2014 3 commits
  28. 29 May, 2014 1 commit
  29. 28 May, 2014 1 commit