Skip to content
Snippets Groups Projects
  1. Dec 05, 2014
  2. Dec 03, 2014
  3. Nov 26, 2014
  4. Nov 19, 2014
  5. Nov 18, 2014
  6. Nov 14, 2014
  7. Nov 13, 2014
  8. Nov 11, 2014
  9. Nov 10, 2014
  10. Nov 08, 2014
    • Richard Smith's avatar
      [c++1z] N4295: fold-expressions. · 4617a9df
      Richard Smith authored
      This is a new form of expression of the form:
      
        (expr op ... op expr)
      
      where one of the exprs is a parameter pack. It expands into
      
        (expr1 op (expr2onwards op ... op expr))
      
      (and likewise if the pack is on the right). The non-pack operand can be
      omitted; in that case, an empty pack gives a fallback value or an error,
      depending on the operator.
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@221573 91177308-0d34-0410-b5e6-96231b3b80d8
      4617a9df
  11. Nov 07, 2014
  12. Nov 05, 2014
  13. Nov 04, 2014
  14. Nov 02, 2014
  15. Oct 30, 2014
  16. Oct 29, 2014
  17. Oct 28, 2014
  18. Oct 27, 2014
  19. Oct 24, 2014
  20. Oct 23, 2014
  21. Oct 21, 2014
    • Alexey Bataev's avatar
      [OPENMP] Codegen for 'private' clause in 'parallel' directive. · 5b6e44a9
      Alexey Bataev authored
      This patch generates some helper variables which used as a private copies of the corresponding original variables inside an OpenMP 'parallel' directive. These generated variables are initialized by default (with the default constructor, if any). In outlined function references to original variables are replaced by the references to these private helper variables. At the end of the initialization of the private variables and implicit barier is set by calling __kmpc_barrier(...) runtime function to be sure that all threads were initialized using original values of the variables.
      Differential Revision: http://reviews.llvm.org/D4752
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220262 91177308-0d34-0410-b5e6-96231b3b80d8
      5b6e44a9
  22. Oct 20, 2014
    • Justin Bogner's avatar
      Driver: Make FailingCommand mandatory for generateCompilationDiagnostics · 8d24a336
      Justin Bogner authored
      We currently use a null FailingCommand when generating crash reports
      as an indication that the cause is FORCE_CLANG_DIAGNOSTICS_CRASH, the
      environment variable that exists to test crash dumps. This means that
      our tests don't actually cover real crashes at all, and adds a more
      complicated code path that's only used in the tests.
      
      Instead, we can have the driver synthesize that every command failed
      and just call generateCompilationDiagnostics normally.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220234 91177308-0d34-0410-b5e6-96231b3b80d8
      8d24a336
  23. Oct 17, 2014
  24. Oct 16, 2014
  25. Oct 15, 2014
Loading