Skip to content
  1. May 12, 2017
    • Jonathan Peyton's avatar
      Clang-format and whitespace cleanup of source code · 3041982d
      Jonathan Peyton authored
      This patch contains the clang-format and cleanup of the entire code base. Some
      of clang-formats changes made the code look worse in places. A best effort was
      made to resolve the bulk of these problems, but many remain. Most of the
      problems were mangling line-breaks and tabbing of comments.
      
      Patch by Terry Wilmarth
      
      Differential Revision: https://reviews.llvm.org/D32659
      
      llvm-svn: 302929
      3041982d
  2. Apr 25, 2017
  3. Apr 17, 2017
  4. Apr 13, 2017
  5. Apr 04, 2017
  6. Mar 28, 2017
  7. Mar 23, 2017
  8. Mar 21, 2017
  9. Mar 20, 2017
  10. Mar 10, 2017
  11. Mar 07, 2017
    • Dan Albert's avatar
      Fix GNU strerror_r check for Android. · 1dc735bf
      Dan Albert authored
      Summary:
      Bionic didn't get a GNU style strerror_r until Android M. Until then
      we unconditionally exposed the POSIX one. Expand the check to account
      for this.
      
      Reviewers: pirama, AndreyChurbanov, jlpeyton
      
      Reviewed By: jlpeyton
      
      Subscribers: openmp-commits, srhines
      
      Differential Revision: https://reviews.llvm.org/D30056
      
      llvm-svn: 297235
      1dc735bf
  12. Mar 06, 2017
  13. Feb 28, 2017
    • Jonathan Peyton's avatar
      Removing couple unnecessary architecture guards. · 928b8ea2
      Jonathan Peyton authored
      This section of code (__kmp_test_then_* functions) is guarded by
      (KMP_ARCH_X86 || KMP_ARCH_X86_64) so it does not make sense to have other
      architecture guards inside this section.  Non-x86 architectures always
      use intrinsics (__sync_*)
      
      llvm-svn: 296525
      928b8ea2
  14. Feb 22, 2017
  15. Feb 17, 2017
  16. Feb 16, 2017
  17. Feb 15, 2017
  18. Feb 06, 2017
  19. Jan 27, 2017
  20. Jan 18, 2017
  21. Jan 12, 2017
    • Jonas Hahnfeld's avatar
      kmp_affinity: Fix check if specific bit is set · c9a8a6c0
      Jonas Hahnfeld authored
      Clang 4.0 trunk warns:
      warning: logical not is only applied to the left hand side of this bitwise operator [-Wlogical-not-parentheses]
      
      This points to a potential bug if the code really wants to check if the single
      bit is not set: If for example (buf.edx >> 9) = 2 (has any bit set except the
      least significant one), 'logical not' will return 0 which stays 0 after the
      'bitwise and'.
      To do this correctly we first need to evaluate the 'bitwise and'. In that case
      it returns 2 & 1 = 0 which after the 'logical not' evaluates to 1.
      
      Differential Revision: https://reviews.llvm.org/D28599
      
      llvm-svn: 291764
      c9a8a6c0
  22. Dec 21, 2016
  23. Dec 15, 2016
  24. Dec 14, 2016
  25. Dec 08, 2016
  26. Dec 01, 2016
  27. Nov 28, 2016
Loading