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 31, 2017
  7. Mar 28, 2017
  8. Mar 23, 2017
  9. Mar 21, 2017
  10. Mar 20, 2017
  11. Mar 10, 2017
  12. 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
  13. Mar 06, 2017
  14. 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
  15. Feb 24, 2017
    • Michal Gorny's avatar
      [test] Try to link -latomic to provide atomics when available · 018d1359
      Michal Gorny authored
      When using -rtlib=libgcc, the fallback implementation of __atomic_*
      builtins is provided via libatomic (included in GCC). However, neither
      GCC itself nor clang link libatomic implicitly, and it seems that GCC
      upstream expects projects to link it explicitly as necessary.
      
      Since compiler-rt provides __atomic_* builtins directly in the main
      library, check if they are provided by the default libraries first.
      If they are not, check if -latomic is available to provide them
      and add explicit -latomic for tests in this case.
      
      This fixes unresolved __atomic_load() references when running openmp
      tests on i386 with libgcc backend.
      
      Differential Revision: https://reviews.llvm.org/D30083
      
      llvm-svn: 296183
      018d1359
  16. Feb 22, 2017
  17. Feb 17, 2017
  18. Feb 16, 2017
  19. Feb 15, 2017
  20. Feb 06, 2017
  21. Jan 30, 2017
  22. Jan 27, 2017
  23. Jan 18, 2017
  24. 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
  25. Jan 04, 2017
  26. Dec 21, 2016
  27. Dec 15, 2016
  28. Dec 14, 2016
Loading