Re: [PATCH] D56044: [Driver] Support object files in addition to static and shared libraries in compiler-rt

2019-01-01 Thread Joerg Sonnenberger via cfe-commits
On Sat, Dec 22, 2018 at 03:22:11AM +, Petr Hosek via Phabricator via cfe-commits wrote: > phosek created this revision. > phosek added a reviewer: echristo. > Herald added subscribers: cfe-commits, atanasyan, jrtc27, dberris, sdardis. > > This change introduces support for object files in

[PATCH] D56181: [CMake][Fuchsia] Include check-lld in the list of bootstrap targets

2019-01-01 Thread Eric Christopher via Phabricator via cfe-commits
echristo accepted this revision. echristo added a comment. This revision is now accepted and ready to land. This seems like the sort of thing that you can just commit in the future. Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D56181/new/

r350202 - [CMake][Fuchsia] Include check-lld in the list of bootstrap targets

2019-01-01 Thread Petr Hosek via cfe-commits
Author: phosek Date: Tue Jan 1 21:11:57 2019 New Revision: 350202 URL: http://llvm.org/viewvc/llvm-project?rev=350202=rev Log: [CMake][Fuchsia] Include check-lld in the list of bootstrap targets This allows running lld tests when doing 2-stage toolchain build. Differential Revision:

[PATCH] D56181: [CMake][Fuchsia] Include check-lld in the list of bootstrap targets

2019-01-01 Thread Petr Hosek via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rC350202: [CMake][Fuchsia] Include check-lld in the list of bootstrap targets (authored by phosek, committed by ). Changed prior to commit: https://reviews.llvm.org/D56181?vs=179786=179817#toc

[PATCH] D56188: Adopt SwiftABIInfo for WebAssembly.

2019-01-01 Thread Daniel Dunbar via Phabricator via cfe-commits
ddunbar created this revision. ddunbar added reviewers: rjmccall, sunfish. Herald added subscribers: cfe-commits, aheejin, jgravelle-google, sbc100, dschuff. - This adopts SwiftABIInfo as the base class for WebAssemblyABIInfo, which is in keeping with what is done for other targets for which

[PATCH] D56044: [Driver] Support object files in addition to static and shared libraries in compiler-rt

2019-01-01 Thread Martin Storsjö via Phabricator via cfe-commits
mstorsjo added inline comments. Comment at: clang/lib/Driver/ToolChain.cpp:376 + case ToolChain::FT_Object: +Suffix = Triple.isOSWindows() ? ".obj" : ".o"; +break; For mingw (Triple.isWindowsGNUEnvironment) the natural extension is `.o` as well. So

r350192 - Fix some typos in the clang doc.

2019-01-01 Thread Sylvestre Ledru via cfe-commits
Author: sylvestre Date: Tue Jan 1 04:51:14 2019 New Revision: 350192 URL: http://llvm.org/viewvc/llvm-project?rev=350192=rev Log: Fix some typos in the clang doc. Fixed with: $ codespell -w ClangFormatStyleOptions.rst Toolchain.rst LanguageExtensions.rst ClangCommandLineReference.rst

[PATCH] D22196: Fix Bug "28480 - cppcoreguidelines-pro-bounds-array-to-pointer-decay handling __PRETTY_FUNCTION__"

2019-01-01 Thread Zitrax via Phabricator via cfe-commits
Zitrax added a comment. Herald added a subscriber: kbarton. Would it be an alternative to add the this patch as an option to the check (disabled by default)? Thus one could allow for example __PRETTY_FUNCTION__ without having to disable this whole check while still letting it fully follow the

r350191 - clang-format-diff: add an example with hg

2019-01-01 Thread Sylvestre Ledru via cfe-commits
Author: sylvestre Date: Tue Jan 1 04:32:08 2019 New Revision: 350191 URL: http://llvm.org/viewvc/llvm-project?rev=350191=rev Log: clang-format-diff: add an example with hg Modified: cfe/trunk/docs/ClangFormat.rst Modified: cfe/trunk/docs/ClangFormat.rst URL: