r280085 - clang/test/Driver/modules-ts.cpp: Satisfy quoted filename.

2016-08-30 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Aug 30 08:07:53 2016 New Revision: 280085 URL: http://llvm.org/viewvc/llvm-project?rev=280085&view=rev Log: clang/test/Driver/modules-ts.cpp: Satisfy quoted filename. On win32, backslashed filename is emitted like; -o "C:\\bb-win\\ninja-clang-i686-msc19-R\\build\\too

r280104 - Disable clang/test/SemaTemplate/instantiation-depth-default.cpp temporarily for targeting mingw32. It crashes. Investigating.

2016-08-30 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Aug 30 10:38:18 2016 New Revision: 280104 URL: http://llvm.org/viewvc/llvm-project?rev=280104&view=rev Log: Disable clang/test/SemaTemplate/instantiation-depth-default.cpp temporarily for targeting mingw32. It crashes. Investigating. Modified: cfe/trunk/test/SemaTem

Re: r280104 - Disable clang/test/SemaTemplate/instantiation-depth-default.cpp temporarily for targeting mingw32. It crashes. Investigating.

2016-08-30 Thread NAKAMURA Takumi via cfe-commits
HandleLLVMOptions.cmake and TableGen.cmake. On Wed, Aug 31, 2016 at 4:12 AM Richard Smith wrote: > On Tue, Aug 30, 2016 at 8:38 AM, NAKAMURA Takumi via cfe-commits < > cfe-commits@lists.llvm.org> wrote: > >> Author: chapuni >> Date: Tue Aug 30 10:38:18 2016 >> New

r280187 - clangTooling: Update libdeps: LLVMOptions, since r280118.

2016-08-30 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Aug 30 19:46:32 2016 New Revision: 280187 URL: http://llvm.org/viewvc/llvm-project?rev=280187&view=rev Log: clangTooling: Update libdeps: LLVMOptions, since r280118. Modified: cfe/trunk/lib/Tooling/CMakeLists.txt Modified: cfe/trunk/lib/Tooling/CMakeLists.txt URL:

r280186 - clangTooling depends on ClangDriverOptions since r280118.

2016-08-30 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Aug 30 19:46:25 2016 New Revision: 280186 URL: http://llvm.org/viewvc/llvm-project?rev=280186&view=rev Log: clangTooling depends on ClangDriverOptions since r280118. Modified: cfe/trunk/lib/Tooling/CMakeLists.txt Modified: cfe/trunk/lib/Tooling/CMakeLists.txt URL:

r280659 - clang/test/Modules/compiler_builtins_x86.c: Fix r280658.

2016-09-05 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Sep 5 08:14:54 2016 New Revision: 280659 URL: http://llvm.org/viewvc/llvm-project?rev=280659&view=rev Log: clang/test/Modules/compiler_builtins_x86.c: Fix r280658. Modified: cfe/trunk/test/Modules/compiler_builtins_x86.c Modified: cfe/trunk/test/Modules/compiler_bu

Re: [PATCH] D13622: Add call to find_package to load LLVM dependencies

2016-02-09 Thread NAKAMURA Takumi via cfe-commits
chapuni resigned from this revision. chapuni edited reviewers, added: rnk; removed: chapuni. chapuni added a comment. I haven't worked in this. I guess it just works. :) http://reviews.llvm.org/D13622 ___ cfe-commits mailing list cfe-commits@lists.l

r260344 - libclang: Enable skip-parsed-bodies on win32.

2016-02-09 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Feb 9 19:29:57 2016 New Revision: 260344 URL: http://llvm.org/viewvc/llvm-project?rev=260344&view=rev Log: libclang: Enable skip-parsed-bodies on win32. I guess it would be working since Rafael's r187619. Modified: cfe/trunk/test/Index/skip-parsed-bodies/compile_co

r260347 - clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc.

2016-02-09 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Feb 9 19:45:51 2016 New Revision: 260347 URL: http://llvm.org/viewvc/llvm-project?rev=260347&view=rev Log: clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc. Modified: cfe/trunk/test/Index/skip-parsed-bodies/compile_commands.json Mo

r260536 - Revert r260265, "clang-cl: Support loading plugins on Windows"

2016-02-11 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Feb 11 10:33:20 2016 New Revision: 260536 URL: http://llvm.org/viewvc/llvm-project?rev=260536&view=rev Log: Revert r260265, "clang-cl: Support loading plugins on Windows" It causes memory exhaust on mingw-w64(x64). Investigating. Modified: cfe/trunk/docs/ClangPlugin

r260537 - Revert r260266 (and r260276), "clang-cl: Enable plugins on Windows"

2016-02-11 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Feb 11 10:43:08 2016 New Revision: 260537 URL: http://llvm.org/viewvc/llvm-project?rev=260537&view=rev Log: Revert r260266 (and r260276), "clang-cl: Enable plugins on Windows" It doesn't work, at least, i686-win32. Modified: cfe/trunk/test/Frontend/plugins.c cfe

r260802 - libclang/CMakeLists.txt: Prune IndexingContext.h out of ADDITIONAL_HEADERS. VS IDE uses it.

2016-02-12 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Feb 12 22:01:49 2016 New Revision: 260802 URL: http://llvm.org/viewvc/llvm-project?rev=260802&view=rev Log: libclang/CMakeLists.txt: Prune IndexingContext.h out of ADDITIONAL_HEADERS. VS IDE uses it. Modified: cfe/trunk/tools/libclang/CMakeLists.txt Modified: cfe/t

Re: r260842 - [index] Enhance c-index-test tool and have it link and test the clangIndex library directly.

2016-02-13 Thread NAKAMURA Takumi via cfe-commits
I guess it would break layering violation. libclang exports just C API and it involves clangIndex, but coremain requires clangIndex and other dependent modules. I think you should do; - Export C++ API in libclang. (But I don't expect it would work for win32) - Link libclang as static. Then c-

r260847 - c-index-test: Fix libdeps corresponding to r260841.

2016-02-14 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sun Feb 14 03:19:04 2016 New Revision: 260847 URL: http://llvm.org/viewvc/llvm-project?rev=260847&view=rev Log: c-index-test: Fix libdeps corresponding to r260841. Modified: cfe/trunk/tools/c-index-test/CMakeLists.txt Modified: cfe/trunk/tools/c-index-test/CMakeLists.tx

Re: r260842 - [index] Enhance c-index-test tool and have it link and test the clangIndex library directly.

2016-02-14 Thread NAKAMURA Takumi via cfe-commits
Okay, I won't object as far as it were safe that libclang (many clang/llvm libraries are linked) and other static libraries could stand side-by-side. I supposed c-index-test is the tool to run and check libclang. FYI, you should specify libraries that are used in the target. Updated in r260847.

Re: r260847 - c-index-test: Fix libdeps corresponding to r260841.

2016-02-14 Thread NAKAMURA Takumi via cfe-commits
1:19 AM, NAKAMURA Takumi via cfe-commits < > cfe-commits@lists.llvm.org> wrote: > > > > Author: chapuni > > Date: Sun Feb 14 03:19:04 2016 > > New Revision: 260847 > > > > URL: http://llvm.org/viewvc/llvm-project?rev=260847&view=rev > &g

r260874 - clangIndex requires LLVMIR as Core, since r260858 uses llvm/IR.

2016-02-14 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sun Feb 14 22:29:36 2016 New Revision: 260874 URL: http://llvm.org/viewvc/llvm-project?rev=260874&view=rev Log: clangIndex requires LLVMIR as Core, since r260858 uses llvm/IR. Modified: cfe/trunk/lib/Index/CMakeLists.txt Modified: cfe/trunk/lib/Index/CMakeLists.txt URL:

r260929 - clang/test/Driver/ps4-linker-win.c: Tweak substitutions if %PATH% ends with '\\', or lit complains with "parser error".

2016-02-15 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Feb 15 21:17:13 2016 New Revision: 260929 URL: http://llvm.org/viewvc/llvm-project?rev=260929&view=rev Log: clang/test/Driver/ps4-linker-win.c: Tweak substitutions if %PATH% ends with '\\', or lit complains with "parser error". Modified: cfe/trunk/test/Driver/ps4-li

[clang-tools-extra] r260944 - clang-tools-extra/test/Unit/lit.site.cfg.in: Prune on_clone. I guess it has been unused since r188006.

2016-02-16 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Feb 16 02:13:36 2016 New Revision: 260944 URL: http://llvm.org/viewvc/llvm-project?rev=260944&view=rev Log: clang-tools-extra/test/Unit/lit.site.cfg.in: Prune on_clone. I guess it has been unused since r188006. Modified: clang-tools-extra/trunk/test/Unit/lit.site.cf

[clang-tools-extra] r261814 - check-clang-tools: Introduce the feature "target-headers".

2016-02-24 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Feb 24 19:12:57 2016 New Revision: 261814 URL: http://llvm.org/viewvc/llvm-project?rev=261814&view=rev Log: check-clang-tools: Introduce the feature "target-headers". For now, it just detects that host is non-Windows and target is msvc. FIXME: It should be probable for

[clang-tools-extra] r261897 - Revert r261814, "check-clang-tools: Introduce the feature target-headers", corresponding to r261893.

2016-02-25 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Feb 25 10:59:59 2016 New Revision: 261897 URL: http://llvm.org/viewvc/llvm-project?rev=261897&view=rev Log: Revert r261814, "check-clang-tools: Introduce the feature target-headers", corresponding to r261893. Modified: clang-tools-extra/trunk/test/clang-tidy/modern

Re: [clang-tools-extra] r261814 - check-clang-tools: Introduce the feature "target-headers".

2016-02-25 Thread NAKAMURA Takumi via cfe-commits
Thanks! r261897. On Fri, Feb 26, 2016 at 1:55 AM Alexander Kornienko wrote: > I've committed r261893 that adds stub headers and points the tool to the > right search directory. If the solution works, this commit can be reverted. > > On Thu, Feb 25, 2016 at 2:12 AM, NAKAMU

r261962 - OpenMPClause.h: Fix typo in \param. [-Wdocumentation]

2016-02-25 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Feb 25 21:15:09 2016 New Revision: 261962 URL: http://llvm.org/viewvc/llvm-project?rev=261962&view=rev Log: OpenMPClause.h: Fix typo in \param. [-Wdocumentation] Modified: cfe/trunk/include/clang/AST/OpenMPClause.h Modified: cfe/trunk/include/clang/AST/OpenMPClause.

r261963 - Checkers/CheckObjCDealloc.cpp: Prune "\param". [-Wdocumentation]

2016-02-25 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Feb 25 21:15:13 2016 New Revision: 261963 URL: http://llvm.org/viewvc/llvm-project?rev=261963&view=rev Log: Checkers/CheckObjCDealloc.cpp: Prune "\param". [-Wdocumentation] Modified: cfe/trunk/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp Modified: cfe/trunk/lib/

r262329 - FormatTests: Update libdeps corresponding to r262323.

2016-03-01 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Mar 1 07:11:36 2016 New Revision: 262329 URL: http://llvm.org/viewvc/llvm-project?rev=262329&view=rev Log: FormatTests: Update libdeps corresponding to r262323. Modified: cfe/trunk/unittests/Format/CMakeLists.txt Modified: cfe/trunk/unittests/Format/CMakeLists.txt

r262606 - Tweak CMakeLists not for libclang to depend on the variable CLANG_TOOL_EXTRA_BUILD.

2016-03-03 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Mar 3 05:09:43 2016 New Revision: 262606 URL: http://llvm.org/viewvc/llvm-project?rev=262606&view=rev Log: Tweak CMakeLists not for libclang to depend on the variable CLANG_TOOL_EXTRA_BUILD. Modified: cfe/trunk/tools/CMakeLists.txt cfe/trunk/tools/libclang/CMak

Re: r256907 - [modules] When a tag type that was imported from a module is referenced via an

2016-01-08 Thread NAKAMURA Takumi via cfe-commits
Seems causes failure in selfhosting. http://lab.llvm.org:8011/builders/clang-x86_64-linux-selfhost-modules/builds/10188 FYI, I saw the log below (on my local branch); While building module 'LLVM_Utils' imported from ~/llvm/llvm-project/llvm/lib/Support/TargetParser.cpp:15: While building module '

Re: r257251 - [modules] If we're treating an elaborated-type-specifier as if it introduces a

2016-01-08 Thread NAKAMURA Takumi via cfe-commits
Thanks. But a few C headers are complaining. Investigating. http://lab.llvm.org:8011/builders/clang-x86_64-linux-selfhost-modules/builds/10380 On Sat, Jan 9, 2016 at 4:02 PM Richard Smith via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: rsmith > Date: Sat Jan 9 00:58:48 2016 > New

r257984 - [Cygwin] Use -femulated-tls by default since r257718 introduced the new pass.

2016-01-15 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Jan 15 21:44:52 2016 New Revision: 257984 URL: http://llvm.org/viewvc/llvm-project?rev=257984&view=rev Log: [Cygwin] Use -femulated-tls by default since r257718 introduced the new pass. FIXME: Add more targets to use emutls into clang/test/Driver/emulated-tls.cpp. FIXME:

r257989 - clang/test/Driver/darwin-multiarch-arm.c: Appease the case that "ld.exe" exists on %PATH% on win32.

2016-01-16 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sat Jan 16 02:35:53 2016 New Revision: 257989 URL: http://llvm.org/viewvc/llvm-project?rev=257989&view=rev Log: clang/test/Driver/darwin-multiarch-arm.c: Appease the case that "ld.exe" exists on %PATH% on win32. Modified: cfe/trunk/test/Driver/darwin-multiarch-arm.c Mo

r258220 - StmtOpenMP.h: Fix a warning in r258177. [-Wdocumentation]

2016-01-19 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Jan 19 17:21:18 2016 New Revision: 258220 URL: http://llvm.org/viewvc/llvm-project?rev=258220&view=rev Log: StmtOpenMP.h: Fix a warning in r258177. [-Wdocumentation] Modified: cfe/trunk/include/clang/AST/StmtOpenMP.h Modified: cfe/trunk/include/clang/AST/StmtOpenMP.

r258219 - StmtOpenMP.h: Fix a warning in r258165. [-Wdocumentation]

2016-01-19 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Jan 19 17:21:13 2016 New Revision: 258219 URL: http://llvm.org/viewvc/llvm-project?rev=258219&view=rev Log: StmtOpenMP.h: Fix a warning in r258165. [-Wdocumentation] Modified: cfe/trunk/include/clang/AST/StmtOpenMP.h Modified: cfe/trunk/include/clang/AST/StmtOpenMP.

Re: [Diffusion] rL257984: [Cygwin] Use -femulated-tls by default since r257718 introduced the new pass.

2016-01-19 Thread NAKAMURA Takumi via cfe-commits
May I push it (llvm and clang) into release_38? It depends on r257718. 2016-01-16 12:48 GMT+09:00 NAKAMURA Takumi : > chapuni committed rL257984: [Cygwin] Use -femulated-tls by default since > r257718 introduced the new pass.. > > [Cygwin] Use -femulated-tls by default since r257718 introduced th

Re: [Diffusion] rL257984: [Cygwin] Use -femulated-tls by default since r257718 introduced the new pass.

2016-01-19 Thread NAKAMURA Takumi via cfe-commits
Ah yes, I was confused. No need to pick up r257984. Sorry for the noise. On Wed, Jan 20, 2016 at 8:54 AM Hans Wennborg wrote: > On Tue, Jan 19, 2016 at 3:43 PM, NAKAMURA Takumi > wrote: > > May I push it (llvm and clang) into release_38? > > It depends on r257718. > > r257718 was committed afte

r258598 - SemaOpenMP.cpp: Fix a warning in r258543. [-Wunused-variable]

2016-01-22 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Jan 22 19:38:20 2016 New Revision: 258598 URL: http://llvm.org/viewvc/llvm-project?rev=258598&view=rev Log: SemaOpenMP.cpp: Fix a warning in r258543. [-Wunused-variable] Modified: cfe/trunk/lib/Sema/SemaOpenMP.cpp Modified: cfe/trunk/lib/Sema/SemaOpenMP.cpp URL: ht

r259016 - Revert r258951 (and r258950), "Refactor backend diagnostics for unsupported features"

2016-01-27 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Jan 27 22:41:32 2016 New Revision: 259016 URL: http://llvm.org/viewvc/llvm-project?rev=259016&view=rev Log: Revert r258951 (and r258950), "Refactor backend diagnostics for unsupported features" It broke layering violation in LLVMIR. clang r258950 "Add backend dignostic

[clang-tools-extra] r259289 - test/clang-tidy/performance-for-range-copy.cpp: Appease for targeting ms mode.

2016-01-29 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Jan 29 20:15:19 2016 New Revision: 259289 URL: http://llvm.org/viewvc/llvm-project?rev=259289&view=rev Log: test/clang-tidy/performance-for-range-copy.cpp: Appease for targeting ms mode. Modified: clang-tools-extra/trunk/test/clang-tidy/performance-for-range-copy.cpp

Re: r259507 - Make the remaining headers self-contained.

2016-02-02 Thread NAKAMURA Takumi via cfe-commits
I am not enabling modules builder(s) since my local branch has a few commits. I will create more builders after release_38 released. On Wed, Feb 3, 2016 at 3:56 PM Sean Silva wrote: > On Tue, Feb 2, 2016 at 11:15 AM, David Blaikie via cfe-commits < > cfe-commits@lists.llvm.org> wrote: > >> >> >>

Re: r260077 - [OPENMP 4.5] Ccapture/codegen of private non-static data members.

2016-02-08 Thread NAKAMURA Takumi via cfe-commits
The test is incompatible to i686-pc-win32. See also http://bb.pgr.jp/builders/ninja-clang-i686-msc18-R/builds/5498 On Mon, Feb 8, 2016 at 6:33 PM Alexey Bataev via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: abataev > Date: Mon Feb 8 03:29:13 2016 > New Revision: 260077 > > URL: h

r260093 - clang/test/OpenMP/parallel_private_codegen.cpp: Fix an expression.

2016-02-08 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Feb 8 08:04:28 2016 New Revision: 260093 URL: http://llvm.org/viewvc/llvm-project?rev=260093&view=rev Log: clang/test/OpenMP/parallel_private_codegen.cpp: Fix an expression. call x86_thiscallcc void @_ZN2SSC1ERi( It matched to: x86_this Modified: cfe/trunk/t

Re: r260077 - [OPENMP 4.5] Ccapture/codegen of private non-static data members.

2016-02-08 Thread NAKAMURA Takumi via cfe-commits
Thanks. It didn't pass with i686-mingw32. // LAMBDA: call // LAMBDA: call{{.*}} void [[OUTER_LAMBDA:@.+]]( call x86_thiscallcc void @_ZN2SSC1ERi(%struct.SS* %ss, i32* dereferenceable(4) @_ZZ4mainE5sivar) call x86_thiscallcc void @"_ZZ4mainENK3$_0clEv"(%class.anon* %temp.lvalue) The latte

r263505 - clang/test/CodeGenCXX/virtual-function-attrs.cpp: Appease i686-mingw32 to expect x86_thiscallcc.

2016-03-14 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Mar 14 18:00:44 2016 New Revision: 263505 URL: http://llvm.org/viewvc/llvm-project?rev=263505&view=rev Log: clang/test/CodeGenCXX/virtual-function-attrs.cpp: Appease i686-mingw32 to expect x86_thiscallcc. Modified: cfe/trunk/test/CodeGenCXX/virtual-function-attrs.cp

r263622 - clang/lib/Frontend/ModuleDependencyCollector.cpp: Use clang/Config/config.h instead of llvm's.

2016-03-16 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Mar 16 03:28:55 2016 New Revision: 263622 URL: http://llvm.org/viewvc/llvm-project?rev=263622&view=rev Log: clang/lib/Frontend/ModuleDependencyCollector.cpp: Use clang/Config/config.h instead of llvm's. Modified: cfe/trunk/lib/Frontend/ModuleDependencyCollector.cpp

r263623 - Revert r263622, "clang/lib/Frontend/ModuleDependencyCollector.cpp: Use clang/Config/config.h instead of llvm's."

2016-03-16 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Mar 16 03:44:37 2016 New Revision: 263623 URL: http://llvm.org/viewvc/llvm-project?rev=263623&view=rev Log: Revert r263622, "clang/lib/Frontend/ModuleDependencyCollector.cpp: Use clang/Config/config.h instead of llvm's." I'll commit better fix(es) later. "llvm/Config/co

r263636 - Revert r263617, "Reapply: [VFS] Add support for handling path traversals"

2016-03-18 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Mar 16 07:15:29 2016 New Revision: 263636 URL: http://llvm.org/viewvc/llvm-project?rev=263636&view=rev Log: Revert r263617, "Reapply: [VFS] Add support for handling path traversals" It broke standalone clang build. Removed: cfe/trunk/test/Modules/crash-vfs-path-syml

Re: [PATCH] D17104: [VFS] Drop path traversal assertion

2016-03-19 Thread NAKAMURA Takumi via cfe-commits
chapuni added a subscriber: chapuni. chapuni added a comment. Excuse me, I have reverted it in r263636. Comment at: lib/Frontend/ModuleDependencyCollector.cpp:65 @@ +64,3 @@ +static bool real_path(StringRef SrcPath, SmallVectorImpl &RealPath) { +#ifdef HAVE_REALPATH + char Cano

r263931 - clang/test/Frontend/plugin-annotate-functions.c requires the target examples/AnnotateFunctions.

2016-03-21 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Mar 21 06:03:39 2016 New Revision: 263931 URL: http://llvm.org/viewvc/llvm-project?rev=263931&view=rev Log: clang/test/Frontend/plugin-annotate-functions.c requires the target examples/AnnotateFunctions. Modified: cfe/trunk/test/CMakeLists.txt Modified: cfe/trunk/t

r263934 - clang/test/CodeGenCXX/cxx1z-lambda-star-this.cpp: Satisfy -Asserts.

2016-03-21 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Mar 21 06:40:15 2016 New Revision: 263934 URL: http://llvm.org/viewvc/llvm-project?rev=263934&view=rev Log: clang/test/CodeGenCXX/cxx1z-lambda-star-this.cpp: Satisfy -Asserts. Modified: cfe/trunk/test/CodeGenCXX/cxx1z-lambda-star-this.cpp Modified: cfe/trunk/test/Co

r263936 - Remove debug output. Sorry for the noise.

2016-03-21 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Mar 21 06:44:05 2016 New Revision: 263936 URL: http://llvm.org/viewvc/llvm-project?rev=263936&view=rev Log: Remove debug output. Sorry for the noise. Modified: cfe/trunk/test/CodeGenCXX/cxx1z-lambda-star-this.cpp Modified: cfe/trunk/test/CodeGenCXX/cxx1z-lambda-star

r264007 - Revert r263974, "clang-cl: With -fmsc-version=1900, use MSVS2015 diag formatting."

2016-03-21 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Mar 21 18:51:50 2016 New Revision: 264007 URL: http://llvm.org/viewvc/llvm-project?rev=264007&view=rev Log: Revert r263974, "clang-cl: With -fmsc-version=1900, use MSVS2015 diag formatting." It seems the test wouldn't expect if default target is *-win32. Modified:

Re: r263974 - clang-cl: With -fmsc-version=1900, use MSVS2015 diag formatting.

2016-03-21 Thread NAKAMURA Takumi via cfe-commits
Reverted in r264007. MSVC_NOTRIPLE and MSVC_ORIG were affected by the default target triple. Nico, could you tweak the test to be stable? On Tue, Mar 22, 2016 at 8:43 AM Richard Smith via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Seems to have caused a bot failure: > > http://lab.llvm.o

[clang-tools-extra] r264362 - clang-tools-extra/test/clang-tidy/readability-redundant-string-cstr.cpp: Appease MS targets with -fno-ms-compatibility.

2016-03-24 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Mar 24 19:05:33 2016 New Revision: 264362 URL: http://llvm.org/viewvc/llvm-project?rev=264362&view=rev Log: clang-tools-extra/test/clang-tidy/readability-redundant-string-cstr.cpp: Appease MS targets with -fno-ms-compatibility. FIXME: Add a test with -fms-compatibility

[clang-tools-extra] r264365 - Fixup -- "-target x86_64-unknown -fno-ms-compatibility" didn't work as expected.

2016-03-24 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Mar 24 19:16:13 2016 New Revision: 264365 URL: http://llvm.org/viewvc/llvm-project?rev=264365&view=rev Log: Fixup -- "-target x86_64-unknown -fno-ms-compatibility" didn't work as expected. Modified: clang-tools-extra/trunk/test/clang-tidy/readability-redundant-strin

[clang-tools-extra] r264367 - 3rd attempt of fixup with -std=c++11

2016-03-24 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Mar 24 19:24:35 2016 New Revision: 264367 URL: http://llvm.org/viewvc/llvm-project?rev=264367&view=rev Log: 3rd attempt of fixup with -std=c++11 Modified: clang-tools-extra/trunk/test/clang-tidy/readability-redundant-string-cstr.cpp Modified: clang-tools-extra/tru

r265301 - AnnotateFunctions: Tweak for mingw.

2016-04-04 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Apr 4 10:30:44 2016 New Revision: 265301 URL: http://llvm.org/viewvc/llvm-project?rev=265301&view=rev Log: AnnotateFunctions: Tweak for mingw. - Externalize the registry. - Update libdeps. Modified: cfe/trunk/examples/AnnotateFunctions/CMakeLists.txt cfe/tr

Re: [clang-tools-extra] r260944 - clang-tools-extra/test/Unit/lit.site.cfg.in: Prune on_clone. I guess it has been unused since r188006.

2016-04-04 Thread NAKAMURA Takumi via cfe-commits
Tom, may I commit it into release_38? It has been preventing "lit --use-processes" on windows. 2016-02-16 17:13 GMT+09:00 NAKAMURA Takumi via cfe-commits : > Author: chapuni > Date: Tue Feb 16 02:13:36 2016 > New Revision: 260944 > > URL: http://llvm.org/viewvc/llvm-pr

r266154 - clang/test/Driver/cl-options.c: Fix an expression to recognize dos r'\\'.

2016-04-12 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Apr 12 19:22:25 2016 New Revision: 266154 URL: http://llvm.org/viewvc/llvm-project?rev=266154&view=rev Log: clang/test/Driver/cl-options.c: Fix an expression to recognize dos r'\\'. Modified: cfe/trunk/test/Driver/cl-options.c Modified: cfe/trunk/test/Driver/cl-opti

r266177 - ASTWriterDecl.cpp: Prune a couple of \param(s), corresponding to r266160. [-Wdocumentation]

2016-04-13 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Apr 13 02:45:10 2016 New Revision: 266177 URL: http://llvm.org/viewvc/llvm-project?rev=266177&view=rev Log: ASTWriterDecl.cpp: Prune a couple of \param(s), corresponding to r266160. [-Wdocumentation] Modified: cfe/trunk/lib/Serialization/ASTWriterDecl.cpp Modified:

[clang-tools-extra] r266265 - clang-tools-extra/test/clang-tidy/readability-deleted-default.cpp: Add -fno-ms-compatibility.

2016-04-13 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Apr 13 18:50:45 2016 New Revision: 266265 URL: http://llvm.org/viewvc/llvm-project?rev=266265&view=rev Log: clang-tools-extra/test/clang-tidy/readability-deleted-default.cpp: Add -fno-ms-compatibility. Modified: clang-tools-extra/trunk/test/clang-tidy/readability-de

r266444 - ASTMatchers.h: Fix formatting. [-Wdocumentation]

2016-04-15 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Apr 15 10:42:27 2016 New Revision: 266444 URL: http://llvm.org/viewvc/llvm-project?rev=266444&view=rev Log: ASTMatchers.h: Fix formatting. [-Wdocumentation] Modified: cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h Modified: cfe/trunk/include/clang/ASTMatchers/AST

[clang-tools-extra] r266874 - IncludeFixerTest.cpp: Tweak not to assume clang-tools-extra were onto clang/tools/extra.

2016-04-20 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Apr 20 09:14:16 2016 New Revision: 266874 URL: http://llvm.org/viewvc/llvm-project?rev=266874&view=rev Log: IncludeFixerTest.cpp: Tweak not to assume clang-tools-extra were onto clang/tools/extra. Modified: clang-tools-extra/trunk/unittests/include-fixer/CMakeLists.

[clang-tools-extra] r267087 - clangTidyReadabilityModule: Add clangTidyUtils in libdeps, corresponding to r267003.

2016-04-21 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Apr 21 19:33:39 2016 New Revision: 267087 URL: http://llvm.org/viewvc/llvm-project?rev=267087&view=rev Log: clangTidyReadabilityModule: Add clangTidyUtils in libdeps, corresponding to r267003. Modified: clang-tools-extra/trunk/clang-tidy/readability/CMakeLists.txt

[clang-tools-extra] r267290 - clang-tidy/cppcoreguidelines/ProTypeMemberInitCheck.cpp: Use raw_string_ostream::str() to flush the buffer explicitly.

2016-04-23 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sat Apr 23 09:54:28 2016 New Revision: 267290 URL: http://llvm.org/viewvc/llvm-project?rev=267290&view=rev Log: clang-tidy/cppcoreguidelines/ProTypeMemberInitCheck.cpp: Use raw_string_ostream::str() to flush the buffer explicitly. Modified: clang-tools-extra/trunk/clan

Re: [PATCH] D18584: Complete support for C++ Core Guidelines Type.6: Always initialize a member variable.

2016-04-23 Thread NAKAMURA Takumi via cfe-commits
chapuni added a subscriber: chapuni. chapuni added a comment. This had been failing. Fixed in r267290. See also http://bb.pgr.jp/builders/msbuild-llvmclang-x64-msc19-DA/builds/349 Comment at: clang-tools-extra/trunk/clang-tidy/cppcoreguidelines/ProTypeMemberInitCheck.cpp:120 @@

r267503 - CGOpenMPRuntime.h: Prune '\param IfCond' in r267395. [-Wdocumentation]

2016-04-25 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Apr 25 19:45:00 2016 New Revision: 267503 URL: http://llvm.org/viewvc/llvm-project?rev=267503&view=rev Log: CGOpenMPRuntime.h: Prune '\param IfCond' in r267395. [-Wdocumentation] Modified: cfe/trunk/lib/CodeGen/CGOpenMPRuntime.h Modified: cfe/trunk/lib/CodeGen/CGOpe

[clang-tools-extra] r267828 - clang-tools-extra/test/clang-tidy/cppcoreguidelines-pro-type-member-init-cxx98.cpp: Appease ms targets with -fno-delayed-template-parsing.

2016-04-27 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Apr 27 19:39:48 2016 New Revision: 267828 URL: http://llvm.org/viewvc/llvm-project?rev=267828&view=rev Log: clang-tools-extra/test/clang-tidy/cppcoreguidelines-pro-type-member-init-cxx98.cpp: Appease ms targets with -fno-delayed-template-parsing. Modified: clang-to

r267830 - clang/test/CodeGenCXX/cfi-blacklist.cpp: Exclude ms targets. They would be non-cfi.

2016-04-27 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Apr 27 19:53:30 2016 New Revision: 267830 URL: http://llvm.org/viewvc/llvm-project?rev=267830&view=rev Log: clang/test/CodeGenCXX/cfi-blacklist.cpp: Exclude ms targets. They would be non-cfi. Modified: cfe/trunk/test/CodeGenCXX/cfi-blacklist.cpp Modified: cfe/trunk

[clang-tools-extra] r267841 - FindAllSymbolsTest.CTypedefTest: Tweak for LLP64 like x86_64-win32.

2016-04-27 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Apr 27 21:15:16 2016 New Revision: 267841 URL: http://llvm.org/viewvc/llvm-project?rev=267841&view=rev Log: FindAllSymbolsTest.CTypedefTest: Tweak for LLP64 like x86_64-win32. In file included from symbol.cc:1: symbols.h:2:24: error: typedef redefinition with differe

r267845 - CGOpenMPRuntime.h: Prune extra comma in \param. [-Wdocumentation]

2016-04-27 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Apr 27 21:45:21 2016 New Revision: 267845 URL: http://llvm.org/viewvc/llvm-project?rev=267845&view=rev Log: CGOpenMPRuntime.h: Prune extra comma in \param. [-Wdocumentation] Modified: cfe/trunk/lib/CodeGen/CGOpenMPRuntime.h Modified: cfe/trunk/lib/CodeGen/CGOpenMPRu

Re: [PATCH] D19482: [include-fixer] Add a find-all-symbols tool for include-fixer.

2016-04-27 Thread NAKAMURA Takumi via cfe-commits
chapuni added a subscriber: chapuni. Comment at: clang-tools-extra/trunk/unittests/include-fixer/find-all-symbols/FindAllSymbolsTests.cpp:333 @@ +332,3 @@ + static const char Code[] = R"( + typedef unsigned size_t; + typedef struct { int x; } X; size_t

r268621 - Sema.h: Prune a redundant \return. [-Wdocumentation]

2016-05-05 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu May 5 05:29:11 2016 New Revision: 268621 URL: http://llvm.org/viewvc/llvm-project?rev=268621&view=rev Log: Sema.h: Prune a redundant \return. [-Wdocumentation] Modified: cfe/trunk/include/clang/Sema/Sema.h Modified: cfe/trunk/include/clang/Sema/Sema.h URL: http://

Re: [Diffusion] rL268585: [modules] Enforce the rules that an explicit or partial specialization must be

2016-05-05 Thread NAKAMURA Takumi via cfe-commits
chapuni added subscribers: cfe-commits, chapuni. /cfe/trunk/include/clang/Sema/Sema.h:1898 This method doesn't return anything. Tweaked in r268621. [-Wdocumentation] Users: rsmith (Author) http://reviews.llvm.org/rL268585 ___ cfe-commits mailing

r268843 - Update \param corresponding to r268819. [-Wdocumentation]

2016-05-06 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri May 6 22:12:30 2016 New Revision: 268843 URL: http://llvm.org/viewvc/llvm-project?rev=268843&view=rev Log: Update \param corresponding to r268819. [-Wdocumentation] Modified: cfe/trunk/include/clang/Lex/ModuleMap.h Modified: cfe/trunk/include/clang/Lex/ModuleMap.h

r269079 - clang/test/CodeGen/avx512f-builtins.c: Fix for -Asserts.

2016-05-10 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue May 10 12:16:12 2016 New Revision: 269079 URL: http://llvm.org/viewvc/llvm-project?rev=269079&view=rev Log: clang/test/CodeGen/avx512f-builtins.c: Fix for -Asserts. Modified: cfe/trunk/test/CodeGen/avx512f-builtins.c Modified: cfe/trunk/test/CodeGen/avx512f-builtins

r290113 - [libclang] Revert part of r290025, "Remove the 'extern "C"' blocks from the implementation files."

2016-12-19 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Dec 19 10:50:43 2016 New Revision: 290113 URL: http://llvm.org/viewvc/llvm-project?rev=290113&view=rev Log: [libclang] Revert part of r290025, "Remove the 'extern "C"' blocks from the implementation files." mingw32-ld complains missing symbols in exports, Cannot expo

Re: [clang-tools-extra] r290202 - [clang-tidy] Add modernize-use-default-member-init check

2016-12-21 Thread NAKAMURA Takumi via cfe-commits
It'd be the issue if the test depended on installed headers. The builder doesn't have MS headers installed. On Thu, Dec 22, 2016 at 1:27 AM Aaron Ballman wrote: > On Tue, Dec 20, 2016 at 5:58 PM, Malcolm Parsons > wrote: > > On 20 December 2016 at 22:32, Aaron Ballman > wrote: > >> On Tue, Dec

Re: [clang-tools-extra] r290202 - [clang-tidy] Add modernize-use-default-member-init check

2016-12-22 Thread NAKAMURA Takumi via cfe-commits
Does the test invoke cl.exe? I supposed it were clang. On Thu, Dec 22, 2016 at 11:24 PM Aaron Ballman wrote: > On Wed, Dec 21, 2016 at 6:10 PM, NAKAMURA Takumi > wrote: > > It'd be the issue if the test depended on installed headers. The builder > > doesn't have MS headers installed. > > Those

r290478 - clangCodeGen: Add LLVMPasses to libdeps. r290450 introduced it.

2016-12-23 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Dec 23 19:55:12 2016 New Revision: 290478 URL: http://llvm.org/viewvc/llvm-project?rev=290478&view=rev Log: clangCodeGen: Add LLVMPasses to libdeps. r290450 introduced it. Modified: cfe/trunk/lib/CodeGen/CMakeLists.txt Modified: cfe/trunk/lib/CodeGen/CMakeLists.txt

r292007 - Add LLVMOption to clang-interpreter, corresponding to r291938.

2017-01-14 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sat Jan 14 02:54:05 2017 New Revision: 292007 URL: http://llvm.org/viewvc/llvm-project?rev=292007&view=rev Log: Add LLVMOption to clang-interpreter, corresponding to r291938. Modified: cfe/trunk/examples/clang-interpreter/CMakeLists.txt Modified: cfe/trunk/examples/clan

[clang-tools-extra] r288034 - ClangMoveTests.cpp: Fix a bogus comparison of iterator.

2016-11-28 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Nov 28 08:27:37 2016 New Revision: 288034 URL: http://llvm.org/viewvc/llvm-project?rev=288034&view=rev Log: ClangMoveTests.cpp: Fix a bogus comparison of iterator. msc Debug build detected it. Modified: clang-tools-extra/trunk/unittests/clang-move/ClangMoveTests.cpp

r288478 - clang/test/Driver/defsym.s: Appease targeting msc. It is incapable of external assembler in trunk.

2016-12-01 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Dec 1 23:09:21 2016 New Revision: 288478 URL: http://llvm.org/viewvc/llvm-project?rev=288478&view=rev Log: clang/test/Driver/defsym.s: Appease targeting msc. It is incapable of external assembler in trunk. Modified: cfe/trunk/test/Driver/defsym.s Modified: cfe/tru

r249698 - CGStmtOpenMP.cpp: Prune redundant \param. [-Wdocumentation]

2015-10-08 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Oct 8 11:41:42 2015 New Revision: 249698 URL: http://llvm.org/viewvc/llvm-project?rev=249698&view=rev Log: CGStmtOpenMP.cpp: Prune redundant \param. [-Wdocumentation] Modified: cfe/trunk/lib/CodeGen/CGStmtOpenMP.cpp Modified: cfe/trunk/lib/CodeGen/CGStmtOpenMP.cpp

Re: [PATCH] D13453: Always generate cmake config files

2015-10-08 Thread NAKAMURA Takumi via cfe-commits
chapuni accepted this revision. This revision is now accepted and ready to land. Comment at: CMakeLists.txt:553 @@ -552,3 +552,3 @@ -if (CLANG_BUILT_STANDALONE) +if (CLANG_BUILT_STANDALONE OR CMAKE_VERSION VERSION_GREATER 3) # Generate a list of CMake library targets so that

r249935 - [CMake] Always generate and install cmake config files on CMake>=3.0.

2015-10-09 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Oct 9 21:37:30 2015 New Revision: 249935 URL: http://llvm.org/viewvc/llvm-project?rev=249935&view=rev Log: [CMake] Always generate and install cmake config files on CMake>=3.0. Currently, cmake config files are only generated and installed when CLANG_BUILD_STANDALONE s

Re: [PATCH] D13453: Always generate cmake config files

2015-10-09 Thread NAKAMURA Takumi via cfe-commits
chapuni closed this revision. chapuni added a comment. Applied in r249935, thanks! http://reviews.llvm.org/D13453 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

r250136 - Tweak clang/test/CodeGen/debug-prefix-map.c to appease win32 hosts.

2015-10-12 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Mon Oct 12 19:38:06 2015 New Revision: 250136 URL: http://llvm.org/viewvc/llvm-project?rev=250136&view=rev Log: Tweak clang/test/CodeGen/debug-prefix-map.c to appease win32 hosts. !1 = !DIFile(filename: "/var/empty\5C", directory: "E:\5Cllvm\5Cbuild\5Ccmake-ninja\5Ctools\

r250403 - Tweak to make clang/test/Driver/ps4-linker-win.c less sinsitive of DLL path.

2015-10-15 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Thu Oct 15 08:51:13 2015 New Revision: 250403 URL: http://llvm.org/viewvc/llvm-project?rev=250403&view=rev Log: Tweak to make clang/test/Driver/ps4-linker-win.c less sinsitive of DLL path. - On mingw-w64, libstdc++-6.dll is used for clang.exe. The DLL might not be in Wind

r250503 - [CMake] Reformat CLANG_TEST_DEPS.

2015-10-16 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Oct 16 04:38:42 2015 New Revision: 250503 URL: http://llvm.org/viewvc/llvm-project?rev=250503&view=rev Log: [CMake] Reformat CLANG_TEST_DEPS. Modified: cfe/trunk/test/CMakeLists.txt Modified: cfe/trunk/test/CMakeLists.txt URL: http://llvm.org/viewvc/llvm-project/cf

r250630 - clang/test/Driver/ps4-linker-non-win.c: Make sure that %T/ps4-ld would be used but *fails*.

2015-10-17 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sat Oct 17 18:15:16 2015 New Revision: 250630 URL: http://llvm.org/viewvc/llvm-project?rev=250630&view=rev Log: clang/test/Driver/ps4-linker-non-win.c: Make sure that %T/ps4-ld would be used but *fails*. Modified: cfe/trunk/test/Driver/ps4-linker-non-win.c Modified: cf

r250631 - clang/test/Driver/ps4-linker-non-win.c: Make %T/ps4-ld executable, or the driver wouldn't find it.

2015-10-17 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sat Oct 17 18:47:02 2015 New Revision: 250631 URL: http://llvm.org/viewvc/llvm-project?rev=250631&view=rev Log: clang/test/Driver/ps4-linker-non-win.c: Make %T/ps4-ld executable, or the driver wouldn't find it. Modified: cfe/trunk/test/Driver/ps4-linker-non-win.c Modif

r250632 - clang/test/Driver/ps4-linker-non-win.c: Tweak for cygwin like ps4-linker-win.c@250403. Cygwin seeks dependent libs along $PATH.

2015-10-17 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sat Oct 17 18:54:54 2015 New Revision: 250632 URL: http://llvm.org/viewvc/llvm-project?rev=250632&view=rev Log: clang/test/Driver/ps4-linker-non-win.c: Tweak for cygwin like ps4-linker-win.c@250403. Cygwin seeks dependent libs along $PATH. Modified: cfe/trunk/test/Drive

r250866 - Revert r247977, "clang/test/lit.cfg: *-ps4 doesn't have appropriate driver yet. Mark it as "non-clang-driver"."

2015-10-20 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Tue Oct 20 17:36:16 2015 New Revision: 250866 URL: http://llvm.org/viewvc/llvm-project?rev=250866&view=rev Log: Revert r247977, "clang/test/lit.cfg: *-ps4 doesn't have appropriate driver yet. Mark it as "non-clang-driver"." They, "tests requiring clang-driver", should work

[clang-tools-extra] r250983 - clang-tools-extra/test/clang-tidy/modernize-use-default.cpp: Appease MS mode.

2015-10-21 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Oct 21 23:32:21 2015 New Revision: 250983 URL: http://llvm.org/viewvc/llvm-project?rev=250983&view=rev Log: clang-tools-extra/test/clang-tidy/modernize-use-default.cpp: Appease MS mode. Modified: clang-tools-extra/trunk/test/clang-tidy/modernize-use-default.cpp Modi

[clang-tools-extra] r250986 - clang-tools-extra/test/clang-tidy/cppcoreguidelines-pro-type-vararg.cpp: Tweak not to depend on out-of-tree header .

2015-10-21 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Oct 21 23:51:47 2015 New Revision: 250986 URL: http://llvm.org/viewvc/llvm-project?rev=250986&view=rev Log: clang-tools-extra/test/clang-tidy/cppcoreguidelines-pro-type-vararg.cpp: Tweak not to depend on out-of-tree header . Modified: clang-tools-extra/trunk/test/c

Re: [clang-tools-extra] r250939 - [clang-tidy] add check cppcoreguidelines-pro-type-vararg

2015-10-21 Thread NAKAMURA Takumi via cfe-commits
Fixed in r250986. On Thu, Oct 22, 2015 at 1:01 PM Manman Ren via cfe-commits < cfe-commits@lists.llvm.org> wrote: > It seems that this commit breaks the following bot > http://lab.llvm.org:8080/green/job/clang-stage1-configure-RA_check/12461/ > > Manman > > On Oct 21, 2015, at 1:09 PM, Matthias G

r251182 - clang/module.modulemap: s/Basic/BuiltinsR600.def/Basic/BuiltinsAMDGPU.def/

2015-10-24 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Sat Oct 24 02:16:41 2015 New Revision: 251182 URL: http://llvm.org/viewvc/llvm-project?rev=251182&view=rev Log: clang/module.modulemap: s/Basic/BuiltinsR600.def/Basic/BuiltinsAMDGPU.def/ Modified: cfe/trunk/include/clang/module.modulemap Modified: cfe/trunk/include/clan

[clang-tools-extra] r251503 - clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c: Use provided by clang, instead of .

2015-10-28 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Wed Oct 28 04:22:21 2015 New Revision: 251503 URL: http://llvm.org/viewvc/llvm-project?rev=251503&view=rev Log: clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c: Use provided by clang, instead of . Modified: clang-tools-extra/trunk/test/clang-tidy/moder

r251701 - clang/module.modulemap: Exclude Frontend/PCHContainerOperations.h in Clang_Frontend.

2015-10-30 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Oct 30 10:14:55 2015 New Revision: 251701 URL: http://llvm.org/viewvc/llvm-project?rev=251701&view=rev Log: clang/module.modulemap: Exclude Frontend/PCHContainerOperations.h in Clang_Frontend. FIXME: It should be dissolved to interface and impl. Modified: cfe/trunk

r251703 - Modules: Add a declaration in clang/Serialization/GlobalModuleIndex.h.

2015-10-30 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Oct 30 10:54:34 2015 New Revision: 251703 URL: http://llvm.org/viewvc/llvm-project?rev=251703&view=rev Log: Modules: Add a declaration in clang/Serialization/GlobalModuleIndex.h. Modified: cfe/trunk/include/clang/Serialization/GlobalModuleIndex.h Modified: cfe/trunk

r251713 - CGExprConstant.cpp: Appease Modules.

2015-10-30 Thread NAKAMURA Takumi via cfe-commits
Author: chapuni Date: Fri Oct 30 11:37:27 2015 New Revision: 251713 URL: http://llvm.org/viewvc/llvm-project?rev=251713&view=rev Log: CGExprConstant.cpp: Appease Modules. Modified: cfe/trunk/lib/CodeGen/CGExprConstant.cpp Modified: cfe/trunk/lib/CodeGen/CGExprConstant.cpp URL: http://llvm.o

<    1   2   3   4   5   6   >