r256412 - clang-format: [TableGen] Support ;-less include lines.

2015-12-25 Thread Daniel Jasper via cfe-commits
Author: djasper Date: Fri Dec 25 02:53:31 2015 New Revision: 256412 URL: http://llvm.org/viewvc/llvm-project?rev=256412&view=rev Log: clang-format: [TableGen] Support ;-less include lines. Modified: cfe/trunk/include/clang/Format/Format.h cfe/trunk/lib/Format/Format.cpp cfe/trunk/lib/

r256417 - [OPENMP] Do not allow to use threadprivate or thread local variables as loop iteration variables.

2015-12-25 Thread Alexey Bataev via cfe-commits
Author: abataev Date: Fri Dec 25 07:38:08 2015 New Revision: 256417 URL: http://llvm.org/viewvc/llvm-project?rev=256417&view=rev Log: [OPENMP] Do not allow to use threadprivate or thread local variables as loop iteration variables. According to OpenMP the loop iteration variable may not appear in

r256418 - Sema.h: Prune '\param NumExprs' corresponding to r256401. [-Wdocumentation]

2015-12-25 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Dec 25 10:19:28 2015 New Revision: 256418 URL: http://llvm.org/viewvc/llvm-project?rev=256418&view=rev Log: Sema.h: Prune '\param NumExprs' corresponding to r256401. [-Wdocumentation] Modified: cfe/trunk/include/clang/Sema/Sema.h Modified: cfe/trunk/include/clang/Se

Re: [PATCH] D15603: [OpenCL] Pipe type support

2015-12-25 Thread Xiuli PAN via cfe-commits
pxli168 added inline comments. Comment at: lib/CodeGen/CGOpenCLRuntime.cpp:108 @@ +107,3 @@ +PipeTy = llvm::PointerType::get(llvm::StructType::create( + CGM.getLLVMContext(), "opencl.pipe_t"), PipeAddrSpc); + } Anastasia wrote: > Should there be any indi

Re: [PATCH] D15603: [OpenCL] Pipe type support

2015-12-25 Thread Xiuli PAN via cfe-commits
pxli168 updated this revision to Diff 43622. pxli168 added a comment. Fix some typo and remove unnecessary namespace, and add a new test case. The Diff 43621 was on a wrong base, ignore it. http://reviews.llvm.org/D15603 Files: include/clang/AST/ASTContext.h include/clang/AST/RecursiveASTVi

Re: [PATCH] D15603: [OpenCL] Pipe type support

2015-12-25 Thread Xiuli PAN via cfe-commits
pxli168 updated this revision to Diff 43621. pxli168 added a comment. Fixed the typo and remove unnecessary namespace. Also add a new test case. http://reviews.llvm.org/D15603 Files: include/clang/AST/ASTContext.h include/clang/AST/RecursiveASTVisitor.h include/clang/AST/Type.h include/

[PATCH] D15780: Fix Bug 24863: crasher: "typedef &decltype(auto)::x T; "

2015-12-25 Thread Zhang Yuankai via cfe-commits
zhykzhykzhyk created this revision. zhykzhykzhyk added a reviewer: rsmith. zhykzhykzhyk added a subscriber: cfe-commits. zhykzhykzhyk set the repository for this revision to rL LLVM. Repository: rL LLVM http://reviews.llvm.org/D15780 Files: lib/Sema/SemaCXXScopeSpec.cpp test/CXX/dcl.dcl/dc