1. 14 Jun, 2014 3 commits
  2. 13 Jun, 2014 2 commits
  3. 12 Jun, 2014 6 commits
  4. 11 Jun, 2014 3 commits
  5. 10 Jun, 2014 9 commits
  6. 09 Jun, 2014 2 commits
  7. 06 Jun, 2014 9 commits
  8. 05 Jun, 2014 1 commit
  9. 04 Jun, 2014 2 commits
  10. 03 Jun, 2014 3 commits
    • Janne Grunau's avatar
      build: check if AS supports the '.func' directive · d5a55981
      Janne Grunau authored
      Not supported by Clang's integrated assembler. Since it just adds
      debug information it can safely omitted.
      d5a55981
    • Janne Grunau's avatar
      arm: check if AS supports .dn · 896a5bff
      Janne Grunau authored
      Move the GNU as check before the arch specific asm checks since the .dn
      check requires gas compatible assembler.
      
      Disable the VC-1 motion compensation NEON asm which is the only part
      using that directive. The integrated assembler in the upcoming clang 3.5
      does not support .dn/.qn without plans to change that. Too much effort
      to implement it while it is rarely used.
      
      http://llvm.org/bugs/show_bug.cgi?id=18199.
      896a5bff
    • Janne Grunau's avatar
      aarch64: use '#' for whole line asm comments · 68a06b3a
      Janne Grunau authored
      Both gnu as and clang treat lines starting with '#' as comments if they
      aren't consumed by the C-style preprocessor.
      Using '//' does not work with clang since comments are removed before
      macro expansion.
      68a06b3a